2023-07-07 15:16:53 +00:00
|
|
|
[package]
|
|
|
|
name = "cli"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
bytes = "1.4.0"
|
|
|
|
clap = { version = "4.3.11", features = ["derive"] }
|
|
|
|
colored = "2.0.4"
|
2023-07-18 04:47:31 +00:00
|
|
|
ctrlc = "3.4.0"
|
2023-07-07 15:16:53 +00:00
|
|
|
dirs = "5.0.1"
|
2023-07-18 04:47:31 +00:00
|
|
|
fuser = "0.12.0"
|
2023-07-07 15:16:53 +00:00
|
|
|
humantime = "2.1.0"
|
|
|
|
json-canon = "0.1.3"
|
2023-07-19 04:52:09 +00:00
|
|
|
lru = "0.11.0"
|
|
|
|
once_cell = "1.18.0"
|
2023-07-09 13:14:48 +00:00
|
|
|
reqwest = { version = "0.11.18", features = ["json", "rustls-tls"], default-features = false }
|
2023-08-21 09:15:30 +00:00
|
|
|
serde = { version = "1.0.171", features = ["derive"] }
|
2023-07-07 15:16:53 +00:00
|
|
|
serde_json = "1.0.100"
|
2023-07-28 05:07:11 +00:00
|
|
|
sha2 = { version = "0.10.7", features = ["asm"] }
|
2023-07-07 15:16:53 +00:00
|
|
|
tokio = { version = "1.29.1", features = ["rt-multi-thread", "macros"] }
|
|
|
|
ufh = { version = "0.1.0", path = "../lib" }
|