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

35 lines
792 B
TOML
Raw Normal View History

2023-05-08 09:48:11 +00:00
[package]
name = "nix-actions-cache"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
gha-cache = { path = "../gha-cache" }
axum = "0.6.18"
axum-macros = "0.3.7"
2023-05-08 09:48:11 +00:00
clap = { version = "4.2.7", features = ["derive"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
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-08 09:48:11 +00:00
serde_json = "1.0.96"
thiserror = "1.0.40"
tokio-stream = "0.1.14"
tokio-util = { version = "0.7.8", features = ["io"] }
daemonize = "0.5.0"
2023-05-08 09:48:11 +00:00
[dependencies.tokio]
version = "1.28.0"
features = [
"fs",
"io-util",
"macros",
"process",
"rt",
"rt-multi-thread",
"sync",
]