2023-07-11 13:41:56 +02:00
|
|
|
[package]
|
|
|
|
name = "rieterd"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-07-15 20:07:19 +02:00
|
|
|
axum = { version = "0.6.18", features = ["http2"] }
|
2023-07-12 11:04:31 +02:00
|
|
|
futures = "0.3.28"
|
2023-07-12 15:10:21 +02:00
|
|
|
libarchive = { path = "../libarchive" }
|
2023-07-13 11:53:48 +02:00
|
|
|
sha256 = "1.1.4"
|
2023-07-11 13:41:56 +02:00
|
|
|
tokio = { version = "1.29.1", features = ["full"] }
|
2023-07-12 11:04:31 +02:00
|
|
|
tokio-util = { version = "0.7.8", features = ["io"] }
|
2023-07-11 13:41:56 +02:00
|
|
|
tower = { version = "0.4.13", features = ["make"] }
|
2023-07-15 20:07:19 +02:00
|
|
|
tower-http = { version = "0.4.1", features = ["fs", "trace"] }
|
|
|
|
tracing-subscriber = "0.3.17"
|
2023-07-12 11:04:31 +02:00
|
|
|
uuid = { version = "1.4.0", features = ["v4"] }
|