24 lines
596 B
TOML
24 lines
596 B
TOML
|
|
[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"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
typedialog-core = { path = "../typedialog-core", features = ["tui", "i18n"] }
|
||
|
|
clap = { workspace = true }
|
||
|
|
anyhow = { workspace = true }
|
||
|
|
tokio = { workspace = true, features = ["rt-multi-thread"] }
|
||
|
|
serde_json = { workspace = true }
|
||
|
|
unic-langid = { workspace = true }
|
||
|
|
|
||
|
|
[lints]
|
||
|
|
workspace = true
|