attic/client/Cargo.toml

48 lines
1,002 B
TOML
Raw Normal View History

2023-01-01 00:01:07 +00: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-03-05 18:05:11 +00:00
anyhow = "1.0.69"
async-channel = "1.8.0"
2023-03-05 18:05:11 +00:00
bytes = "1.4.0"
clap = { version = "4.1", features = ["derive"] }
clap_complete = "4.1.4"
2023-01-01 00:01:07 +00:00
const_format = "0.2.30"
2023-03-05 18:05:11 +00:00
dialoguer = "0.10.3"
2023-01-01 00:01:07 +00:00
displaydoc = "0.2.3"
enum-as-inner = "0.5.1"
2023-03-05 18:05:11 +00:00
futures = "0.3.26"
2023-01-01 00:01:07 +00:00
humantime = "2.1.0"
2023-03-05 18:05:11 +00:00
indicatif = "0.17.3"
2023-01-01 00:01:07 +00:00
lazy_static = "1.4.0"
2023-01-29 19:01:54 +00:00
notify = { version = "5.1.0", default-features = false, features = ["macos_kqueue"] }
2023-03-05 18:05:11 +00:00
regex = "1.7.1"
reqwest = { version = "0.11.14", default-features = false, features = ["json", "rustls-tls", "rustls-tls-native-roots", "stream"] }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.93"
2023-03-05 18:05:11 +00:00
toml = "0.7.2"
2023-01-01 00:01:07 +00:00
tracing = "0.1.37"
tracing-subscriber = "0.3.16"
xdg = "2.4.1"
[dependencies.tokio]
2023-03-05 18:05:11 +00:00
version = "1.26.0"
2023-01-01 00:01:07 +00:00
features = [
"fs",
"io-util",
"macros",
"process",
"rt",
"rt-multi-thread",
"sync",
2023-01-01 00:01:07 +00:00
]