2021-12-13 15:43:47 +01:00
|
|
|
[package]
|
2021-12-30 11:45:59 +01:00
|
|
|
name = "planetwars-server"
|
2021-12-13 15:43:47 +01:00
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-06-12 21:03:41 +02:00
|
|
|
futures = "0.3"
|
2021-12-29 16:11:27 +01:00
|
|
|
tokio = { version = "1.15", features = ["full"] }
|
2022-06-05 21:22:38 +02:00
|
|
|
tokio-stream = "0.1.9"
|
2021-12-29 16:11:27 +01:00
|
|
|
hyper = "0.14"
|
2022-06-20 22:01:26 +02:00
|
|
|
axum = { version = "0.5", features = ["json", "headers", "multipart"] }
|
2021-12-29 16:11:27 +01:00
|
|
|
diesel = { version = "1.4.4", features = ["postgres", "chrono"] }
|
2022-01-03 23:33:00 +01:00
|
|
|
diesel-derive-enum = { version = "1.1", features = ["postgres"] }
|
2021-12-29 16:11:27 +01:00
|
|
|
bb8 = "0.7"
|
|
|
|
bb8-diesel = "0.2"
|
2021-12-13 15:43:47 +01:00
|
|
|
dotenv = "0.15.0"
|
2021-12-13 22:41:20 +01:00
|
|
|
rust-argon2 = "0.8"
|
|
|
|
rand = "0.8.4"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_bytes = "0.11"
|
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
serde_json = "1.0"
|
|
|
|
base64 = "0.13.0"
|
2021-12-19 00:16:46 +01:00
|
|
|
zip = "0.5"
|
2022-01-01 16:32:55 +01:00
|
|
|
toml = "0.5"
|
|
|
|
planetwars-matchrunner = { path = "../planetwars-matchrunner" }
|
2022-02-20 23:06:05 +01:00
|
|
|
config = { version = "0.12", features = ["toml"] }
|
2022-04-09 10:04:12 +02:00
|
|
|
thiserror = "1.0.31"
|
2022-06-12 21:03:41 +02:00
|
|
|
sha2 = "0.10"
|
2022-06-19 22:33:44 +02:00
|
|
|
tokio-util = { version="0.7.3", features=["io"] }
|
2022-05-31 21:08:56 +02:00
|
|
|
prost = "0.10"
|
|
|
|
tonic = "0.7.2"
|
2022-01-01 16:32:55 +01:00
|
|
|
|
|
|
|
# TODO: remove me
|
|
|
|
shlex = "1.1"
|
2021-12-13 15:43:47 +01:00
|
|
|
|
2022-05-31 21:08:56 +02:00
|
|
|
[build-dependencies]
|
|
|
|
tonic-build = "0.7.2"
|
|
|
|
|
2021-12-14 20:23:07 +01:00
|
|
|
[dev-dependencies]
|
2022-01-03 23:33:00 +01:00
|
|
|
parking_lot = "0.11"
|