omegaupload/server/Cargo.toml

31 lines
1.1 KiB
TOML
Raw Normal View History

2021-10-16 09:50:11 -07:00
[package]
name = "omegaupload-server"
version = "0.1.0"
2021-10-21 18:35:54 -07:00
edition = "2021"
2021-10-16 09:50:11 -07:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-10-21 18:35:54 -07:00
omegaupload-common = { path = "../common" }
2022-07-10 20:31:54 -07:00
anyhow = "1.0.58"
axum = { version = "0.5.11", features = ["http2", "headers"] }
bincode = "1.3.3"
2021-10-16 09:50:11 -07:00
# We don't care about which version (We want to match with axum), we just need
# to enable the feature
2022-07-10 20:31:54 -07:00
bytes = { version = "1.1.0", features = ["serde"] }
chrono = { version = "0.4.19", features = ["serde"] }
futures = "0.3.21"
2021-10-16 09:50:11 -07:00
# We just need to pull in whatever axum is pulling in
2022-07-10 20:31:54 -07:00
headers = "0.3.7"
lazy_static = "1.4.0"
2021-10-31 12:34:26 -07:00
# Disable `random()` and `thread_rng()`
2022-07-10 20:31:54 -07:00
rand = { version = "0.8.5", default_features = false }
rocksdb = { version = "0.18.0", default_features = false, features = ["zstd"] }
serde = { version = "1.0.138", features = ["derive"] }
signal-hook = "0.3.14"
signal-hook-tokio = { version = "0.3.1", features = ["futures-v0_3"] }
tokio = { version = "1.19.2", features = ["macros", "rt-multi-thread"] }
tower-http = { version = "0.3.4", features = ["fs"] }
tracing = "0.1.35"
tracing-subscriber = "0.3.14"