2025-12-28 20:39:36 +00:00

31 lines
828 B
TOML

[package]
authors.workspace = true
description = "TypeDialog CLI tool for interactive forms and prompts"
edition.workspace = true
license.workspace = true
name = "typedialog"
repository.workspace = true
version.workspace = true
[[bin]]
name = "typedialog"
path = "src/main.rs"
[package.metadata.binstall]
bin-dir = "bin/{ bin }"
pkg-fmt = "tgz"
pkg-url = "{ repo }/releases/download/v{ version }/typedialog-{ target }.tar.gz"
[dependencies]
anyhow = { workspace = true }
clap = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread"] }
toml = { workspace = true }
tracing-subscriber = { workspace = true }
typedialog-core = { path = "../typedialog-core", features = ["cli", "i18n", "encryption"] }
unic-langid = { workspace = true }
[lints]
workspace = true