magic-nix-cache/nix-actions-cache/Cargo.toml
2023-05-08 03:48:11 -06:00

33 lines
669 B
TOML

[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"
clap = { version = "4.2.7", features = ["derive"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
tower-http = { version = "0.4.0", features = ["trace"] }
serde_json = "1.0.96"
thiserror = "1.0.40"
tokio-stream = "0.1.14"
tokio-util = { version = "0.7.8", features = ["io"] }
rand = "0.8.5"
[dependencies.tokio]
version = "1.28.0"
features = [
"fs",
"io-util",
"macros",
"process",
"rt",
"rt-multi-thread",
"sync",
]