1
0
Fork 0
mirror of https://github.com/zhaofengli/attic.git synced 2025-03-05 16:27:06 +00:00
attic/client/Cargo.toml

48 lines
1,001 B
TOML
Raw Permalink Normal View History

2022-12-31 17:01:07 -07:00
[package]
name = "attic-client"
version = "0.1.0"
edition = "2021"
publish = false
[[bin]]
name = "attic"
path = "src/main.rs"
[dependencies]
attic = { path = "../attic" }
2023-05-28 15:21:59 -06:00
anyhow = "1.0.71"
2024-06-01 13:47:27 -06:00
async-channel = "2.3.1"
2023-03-05 11:05:11 -07:00
bytes = "1.4.0"
2023-05-28 15:21:59 -06:00
clap = { version = "4.3", features = ["derive"] }
clap_complete = "4.3.0"
2022-12-31 17:01:07 -07:00
const_format = "0.2.30"
dialoguer = "0.11.0"
2023-05-28 15:21:59 -06:00
displaydoc = "0.2.4"
enum-as-inner = "0.6.0"
2023-05-28 15:21:59 -06:00
futures = "0.3.28"
2022-12-31 17:01:07 -07:00
humantime = "2.1.0"
2023-03-05 11:05:11 -07:00
indicatif = "0.17.3"
2022-12-31 17:01:07 -07:00
lazy_static = "1.4.0"
notify = { version = "7.0.0", default-features = false, features = ["macos_kqueue"] }
2023-05-28 15:21:59 -06:00
regex = "1.8.3"
2024-06-01 13:47:27 -06:00
reqwest = { version = "0.12.4", default-features = false, features = ["json", "rustls-tls", "rustls-tls-native-roots", "stream"] }
2023-05-28 15:21:59 -06:00
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
toml = "0.8.8"
2022-12-31 17:01:07 -07:00
tracing = "0.1.37"
2023-05-28 15:21:59 -06:00
tracing-subscriber = "0.3.17"
xdg = "2.5.0"
2022-12-31 17:01:07 -07:00
[dependencies.tokio]
2023-05-28 15:21:59 -06:00
version = "1.28.2"
2022-12-31 17:01:07 -07:00
features = [
"fs",
"io-util",
"macros",
"process",
"rt",
"rt-multi-thread",
"sync",
2022-12-31 17:01:07 -07:00
]