30 lines
788 B
TOML
Raw Normal View History

2025-12-18 01:16:44 +00:00
[package]
name = "typedialog-tui"
version.workspace = true
authors.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
description = "TypeDialog TUI tool for interactive forms using ratatui"
[[bin]]
name = "typedialog-tui"
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]
typedialog-core = { path = "../typedialog-core", features = ["tui", "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 }
2025-12-18 01:16:44 +00:00
unic-langid = { workspace = true }
[lints]
workspace = true