2023-05-08 09:48:11 +00:00
|
|
|
[package]
|
2023-06-24 22:24:52 +00:00
|
|
|
name = "magic-nix-cache"
|
2024-03-09 15:51:56 +00:00
|
|
|
version = "0.2.0"
|
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" }
|
|
|
|
|
2024-08-08 00:44:18 +00:00
|
|
|
axum = { version = "0.7.5", default-features = false, features = [
|
2024-05-17 16:22:58 +00:00
|
|
|
"json",
|
|
|
|
"tokio",
|
2024-08-08 00:44:18 +00:00
|
|
|
"http2",
|
|
|
|
"macros"
|
2024-05-17 16:22:58 +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"
|
2024-05-17 16:22:58 +00:00
|
|
|
tracing-subscriber = { version = "0.3.17", default-features = false, features = [
|
|
|
|
"ansi",
|
|
|
|
"env-filter",
|
|
|
|
"fmt",
|
|
|
|
"tracing-log",
|
|
|
|
"smallvec",
|
|
|
|
] }
|
2024-08-08 00:44:18 +00:00
|
|
|
tower-http = { version = "0.5.2", features = ["trace"] }
|
2023-05-19 08:48:52 +00:00
|
|
|
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"
|
2024-08-08 00:44:18 +00:00
|
|
|
tokio-stream = { version = "0.1.15", default-features = false }
|
|
|
|
tokio-util = { version = "0.7.11", features = ["io", "compat"] }
|
2023-05-19 08:48:52 +00:00
|
|
|
daemonize = "0.5.0"
|
2023-06-26 03:04:46 +00:00
|
|
|
is_ci = "1.1.1"
|
|
|
|
sha2 = { version = "0.10.6", default-features = false }
|
2024-08-08 00:44:18 +00:00
|
|
|
reqwest = { version = "0.12.5", default-features = false, features = [
|
2024-05-17 16:22:58 +00:00
|
|
|
"blocking",
|
|
|
|
"rustls-tls-native-roots",
|
|
|
|
"trust-dns",
|
2024-08-08 00:44:18 +00:00
|
|
|
"json"
|
2024-05-17 16:22:58 +00:00
|
|
|
] }
|
2023-12-14 16:09:09 +00:00
|
|
|
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" }
|
2024-03-01 16:40:20 +00:00
|
|
|
attic-server = { git = "https://github.com/DeterminateSystems/attic", branch = "fixups-for-magic-nix-cache" }
|
2023-12-14 16:09:09 +00:00
|
|
|
indicatif = "0.17"
|
2023-12-14 20:35:50 +00:00
|
|
|
anyhow = "1.0.71"
|
2024-01-10 15:55:22 +00:00
|
|
|
tempfile = "3.9"
|
2024-01-10 19:19:04 +00:00
|
|
|
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"
|
2024-04-23 14:54:02 +00:00
|
|
|
tracing-appender = "0.2.3"
|
2024-08-08 00:44:18 +00:00
|
|
|
http = "1.0"
|
|
|
|
http-body-util = "0.1"
|
|
|
|
hyper = { version = "1.0.0", features = ["full"] }
|
|
|
|
hyper-util = { version = "0.1", features = ["tokio", "server-auto", "http1"] }
|
2024-08-30 16:05:51 +00:00
|
|
|
xdg = { version = "2.5.2" }
|
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
|
2024-05-17 16:22:58 +00:00
|
|
|
features = ["fs", "macros", "process", "rt", "rt-multi-thread", "sync"]
|