A fork of attic a self-hostable Nix Binary Cache server
1[package]
2name = "attic-client"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[[bin]]
8name = "attic"
9path = "src/main.rs"
10
11[dependencies]
12attic = { path = "../attic" }
13
14anyhow = "1.0.98"
15async-channel = "2.5.0"
16bytes = "1.10.1"
17clap = { version = "4.5", features = ["derive"] }
18clap_complete = "4.5.54"
19const_format = "0.2.34"
20dialoguer = "0.11.0"
21displaydoc = "0.2.5"
22enum-as-inner = "0.6.1"
23futures = "0.3.31"
24humantime = "2.2.0"
25indicatif = "0.18.0"
26lazy_static = "1.5.0"
27notify = { version = "8.1.0", default-features = false, features = ["macos_kqueue"] }
28regex = "1.11.1"
29reqwest = { version = "0.12.22", default-features = false, features = ["json", "rustls-tls", "rustls-tls-native-roots", "stream"] }
30serde = { version = "1.0.219", features = ["derive"] }
31serde_json = "1.0.140"
32toml = "0.8.23"
33tracing = "0.1.41"
34tracing-subscriber = "0.3.19"
35xdg = "3.0.0"
36
37[dependencies.tokio]
38version = "1.46.1"
39features = [
40 "fs",
41 "io-std",
42 "io-util",
43 "macros",
44 "process",
45 "rt",
46 "rt-multi-thread",
47 "sync",
48]