magic-nix-cache/magic-nix-cache/Cargo.toml

47 lines
1.7 KiB
TOML
Raw Normal View History

2023-05-08 09:48:11 +00:00
[package]
2023-06-24 22:24:52 +00:00
name = "magic-nix-cache"
2023-12-04 19:58:46 +00:00
version = "0.1.2"
2023-05-08 09:48:11 +00:00
edition = "2021"
2023-06-26 15:25:17 +00:00
license = "Apache-2.0"
2023-05-08 09:48:11 +00:00
[dependencies]
gha-cache = { path = "../gha-cache" }
2023-05-22 22:00:34 +00:00
axum = { version = "0.6.18", default-features = false, features = ["json", "tokio"] }
axum-macros = "0.3.7"
2023-06-28 20:37:35 +00:00
clap = { version = "4.2.7", default-features = false, features = ["std", "derive", "error-context", "wrap_help"] }
2023-05-08 09:48:11 +00:00
tracing = "0.1.37"
2023-06-23 01:28:35 +00:00
tracing-subscriber = { version = "0.3.17", default-features = false, features = ["ansi", "env-filter", "fmt", "tracing-log", "smallvec"] }
2023-05-08 09:48:11 +00:00
tower-http = { version = "0.4.0", features = ["trace"] }
serde = { version = "1.0.162", features = ["derive"] }
2023-05-22 22:00:34 +00:00
serde_json = { version = "1.0.96", default-features = false }
2023-05-08 09:48:11 +00:00
thiserror = "1.0.40"
2023-05-22 22:00:34 +00:00
tokio-stream = { version = "0.1.14", default-features = false }
2024-02-29 20:22:29 +00:00
tokio-util = { version = "0.7.8", features = ["io", "compat"] }
daemonize = "0.5.0"
is_ci = "1.1.1"
sha2 = { version = "0.10.6", default-features = false }
reqwest = { version = "0.11.17", default-features = false, features = ["blocking", "rustls-tls-native-roots", "trust-dns"] }
netrc-rs = "0.1.2"
2024-02-27 17:57:20 +00:00
attic = { git = "https://github.com/DeterminateSystems/attic", branch = "fixups-for-magic-nix-cache" }
attic-client = { git = "https://github.com/DeterminateSystems/attic", branch = "fixups-for-magic-nix-cache" }
attic-server = { git = "https://github.com/DeterminateSystems/attic", branch = "fixups-for-magic-nix-cache" }
indicatif = "0.17"
2023-12-14 20:35:50 +00:00
anyhow = "1.0.71"
tempfile = "3.9"
uuid = { version = "1.4.0", features = ["serde", "v7", "rand", "std"] }
2024-02-29 15:26:10 +00:00
futures = "0.3"
2024-02-29 19:43:25 +00:00
async-compression = "0.4"
2023-05-08 09:48:11 +00:00
[dependencies.tokio]
version = "1.28.0"
2023-05-22 22:00:34 +00:00
default-features = false
2023-05-08 09:48:11 +00:00
features = [
"fs",
"macros",
2023-05-08 09:48:11 +00:00
"process",
"rt",
"rt-multi-thread",
"sync",
]