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"
|
2023-05-19 08:48:52 +00:00
|
|
|
axum-macros = "0.3.7"
|
2023-05-08 09:48:11 +00:00
|
|
|
clap = { version = "4.2.7", features = ["derive"] }
|
|
|
|
tracing = "0.1.37"
|
2023-05-08 18:59:57 +00:00
|
|
|
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"] }
|
2023-05-19 08:48:52 +00:00
|
|
|
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"] }
|
2023-05-19 08:48:52 +00:00
|
|
|
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",
|
|
|
|
]
|