omegaupload/server/Cargo.toml

25 lines
904 B
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" }
2021-10-16 16:50:11 +00:00
anyhow = "1"
axum = { version = "0.2", features = ["http2", "headers"] }
bincode = "1"
# We don't care about which version (We want to match with axum), we just need
# to enable the feature
2021-10-19 09:18:33 +00:00
bytes = { version = "*", features = ["serde"] }
chrono = { version = "0.4", features = ["serde"] }
2021-10-16 16:50:11 +00:00
# We just need to pull in whatever axum is pulling in
headers = "*"
rand = "0.8"
rocksdb = { version = "0.17", default_features = false, features = ["zstd"] }
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
2021-10-27 06:51:05 +00:00
tower-http = { version = "0.1", features = ["fs"] }
2021-10-16 16:50:11 +00:00
tracing = { version = "0.1" }
tracing-subscriber = "0.2"