planetwars.dev/planetwars-matchrunner/Cargo.toml

23 lines
641 B
TOML
Raw Normal View History

[package]
name = "planetwars-matchrunner"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2022-01-06 22:44:35 +00:00
[dependencies]
futures-core = "0.3"
futures = "0.3"
tokio = { version = "1", features = ["full"] }
rand = "0.6"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
planetwars-rules = { path = "../planetwars-rules" }
2022-01-06 22:44:35 +00:00
chrono = { version = "0.4", features = ["serde"] }
2022-02-23 20:08:56 +00:00
bollard = { git = "https://github.com/fussybeaver/bollard", rev = "c5d87a4934c70a04f9c649fedb241dbd4943c927" }
2022-01-22 13:32:43 +00:00
bytes = "1.1"
2022-02-23 20:08:56 +00:00
async-trait = "0.1"
2022-09-20 19:11:19 +00:00
[dev-dependencies]
tempfile = "3"