live-cli/Cargo.toml

20 lines
504 B
TOML
Raw Normal View History

2022-12-15 23:03:57 -05:00
[package]
name = "live-cli"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tui = "0.19"
2022-12-17 00:06:08 -05:00
crossterm = { version = "0.25", features = ["bracketed-paste"] }
2022-12-15 23:03:57 -05:00
atty = "0.2.14"
2022-12-15 23:18:56 -05:00
ansi4tui = {path = "./ansi4tui/"}
2022-12-16 20:41:16 -05:00
anyhow = "1.0.66"
shellwords = "1.1.0"
2022-12-17 12:02:38 -05:00
crossbeam = "0.8.2"
parking_lot = "0.12.1"
2022-12-20 21:35:11 -05:00
tracing = { version = "0.1.37", features = ["release_max_level_off"] }
tracing-subscriber = "0.3.16"
ropey = "1.5.0"