20 lines
541 B
TOML
20 lines
541 B
TOML
[package]
|
|
name = "tethers"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
crossterm = { version = "0.28.1", features = ["event-stream"] }
|
|
futures = "0.3.30"
|
|
indexmap = "2.6.0"
|
|
lazy_static = "1.5.0"
|
|
ratatui = { version = "0.28.1", features = ["all-widgets"] }
|
|
serde = { version = "1.0.210", features = ["derive"] }
|
|
serde_json = "1.0.128"
|
|
shlex = "1.3.0"
|
|
ssh_cfg = "0.3.0"
|
|
tokio = { version = "1.40.0", features = ["full"] }
|
|
toml = "0.8.19"
|