megamappingway/server/Cargo.toml

26 lines
729 B
TOML

[package]
name = "player-map-server"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
axum = "0.6"
bytes = "1"
chrono = { version = "0.4", features = ["serde"] }
data-encoding = "2"
half = "2"
rand = "0.8"
rmp-serde = "1"
serde = { version = "1", features = ["derive"] }
serde_bytes = "0.11"
serde_path_to_error = "0.1"
siphasher = "1"
sqlx = { version = "0.7", features = ["runtime-tokio", "postgres", "chrono"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "signal"] }
toml = "0.8"
tower = "0.4"
tower-http = { version = "0.4", features = ["compression-full", "decompression-gzip", "cors"] }