2025-12-18 01:16:44 +00:00
|
|
|
[package]
|
|
|
|
|
name = "typedialog"
|
|
|
|
|
version.workspace = true
|
|
|
|
|
authors.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
repository.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
description = "TypeDialog CLI tool for interactive forms and prompts"
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "typedialog"
|
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
2025-12-24 03:15:02 +00:00
|
|
|
[package.metadata.binstall]
|
|
|
|
|
pkg-url = "{ repo }/releases/download/v{ version }/typedialog-{ target }.tar.gz"
|
|
|
|
|
bin-dir = "bin/{ bin }"
|
|
|
|
|
pkg-fmt = "tgz"
|
|
|
|
|
|
2025-12-18 01:16:44 +00:00
|
|
|
[dependencies]
|
2025-12-22 10:40:01 +00:00
|
|
|
typedialog-core = { path = "../typedialog-core", features = ["cli", "i18n", "encryption"] }
|
2025-12-18 01:16:44 +00:00
|
|
|
clap = { workspace = true }
|
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
|
tokio = { workspace = true, features = ["rt-multi-thread"] }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
toml = { workspace = true }
|
|
|
|
|
unic-langid = { workspace = true }
|
2025-12-28 20:16:19 +00:00
|
|
|
tracing-subscriber = { workspace = true }
|
2025-12-18 01:16:44 +00:00
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|