cargo hollywood
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..cf9dd55 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,24 @@ +[package] +name = "cargo-kewl" +version = "0.1.0" +edition = "2021" +license = "MIT" +description = "dashboards; graphs; charts-- for cargo!" +repository = "https://bend-n/cargo-kewl" +authors = ["bendn <[email protected]>"] + +[dependencies] +clap = { version = "4.4.6", features = ["derive"] } +ratatui = { version = "0.23.0", features = ["crossterm"] } +log = "0.4.20" +comat = "0.1.3" +ansi-to-tui = "3.1.0" +humantime = "2.1.0" + +anyhow = "1.0.75" +crossbeam = { version = "0.8.2", features = ["crossbeam-channel"] } +crossterm = "0.27.0" +serde = "1" +serde_derive = "1" +serde_json = "1" +toml = "0.8.2" |