Initial upload with CI/CD workflow
This commit is contained in:
25
app/Cargo.toml
Normal file
25
app/Cargo.toml
Normal file
@@ -0,0 +1,25 @@
|
||||
[package]
|
||||
name = "tui-generator-cli"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
description = "A Rust CLI tool that generates beautiful, interactive terminal user interfaces for any command-line tool"
|
||||
authors = ["TUI Generator Contributors"]
|
||||
|
||||
[dependencies]
|
||||
ratatui = "0.30"
|
||||
crossterm = "0.29"
|
||||
clap = { version = "4.4", features = ["derive"] }
|
||||
anyhow = "1.0"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
toml = "0.8"
|
||||
tokio = { version = "1.0", features = ["full"] }
|
||||
unicode-width = "0.1"
|
||||
regex = "1.10"
|
||||
chrono = { version = "0.4", features = ["std"] }
|
||||
|
||||
[dev-dependencies]
|
||||
tempfile = "3"
|
||||
|
||||
[profile.release]
|
||||
opt-level = 2
|
||||
lto = true
|
||||
Reference in New Issue
Block a user