omegaupload/server/Cargo.toml

31 lines
1.1 KiB
TOML
Raw Normal View History

2021-10-16 16:50:11 +00:00
[package]
name = "omegaupload-server"
version = "0.1.0"
2021-10-22 01:35:54 +00:00
edition = "2021"
2021-10-16 16:50:11 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-10-22 01:35:54 +00:00
omegaupload-common = { path = "../common" }
2022-07-11 03:31:54 +00:00
anyhow = "1.0.58"
2023-10-21 19:01:32 +00:00
axum = { version = "0.6", features = ["http2", "headers"] }
2022-07-11 03:31:54 +00:00
bincode = "1.3.3"
2021-10-16 16:50:11 +00:00
# We don't care about which version (We want to match with axum), we just need
# to enable the feature
2022-07-27 02:38:45 +00:00
bytes = { version = "1.2.0", features = ["serde"] }
2022-07-11 03:31:54 +00:00
chrono = { version = "0.4.19", features = ["serde"] }
futures = "0.3.21"
2021-10-16 16:50:11 +00:00
# We just need to pull in whatever axum is pulling in
2022-07-11 03:31:54 +00:00
headers = "0.3.7"
lazy_static = "1.4.0"
2021-10-31 19:34:26 +00:00
# Disable `random()` and `thread_rng()`
2022-07-27 02:38:45 +00:00
rand = { version = "0.8.5", default-features = false }
2023-10-21 19:01:32 +00:00
rocksdb = { version = "0.21", default-features = false, features = ["zstd"] }
2022-07-27 02:38:45 +00:00
serde = { version = "1.0.140", features = ["derive"] }
2022-07-11 03:31:54 +00:00
signal-hook = "0.3.14"
signal-hook-tokio = { version = "0.3.1", features = ["futures-v0_3"] }
2022-07-27 02:38:45 +00:00
tokio = { version = "1.20.1", features = ["macros", "rt-multi-thread"] }
2023-10-21 19:01:32 +00:00
tower-http = { version = "0.4", features = ["fs"] }
2022-07-11 03:31:54 +00:00
tracing = "0.1.35"
2022-07-27 02:38:45 +00:00
tracing-subscriber = "0.3.15"