planetwars.dev/planetwars-server/Cargo.toml

53 lines
1.3 KiB
TOML
Raw Permalink Normal View History

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