planet-wars/backend/Cargo.toml

28 lines
947 B
TOML
Raw Normal View History

2019-09-14 13:16:16 +02:00
[package]
2020-06-14 22:20:08 +02:00
name = "planetwars"
version = "0.1.2"
2019-09-14 13:16:16 +02:00
authors = ["ajuvercr <arthur.vercruysse@ugent.be>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2019-10-29 18:30:17 +01:00
mozaic = { git = "https://github.com/ZeusWPI/MOZAICP" }
2021-01-17 15:26:00 +01:00
rand = { version = "0.8.2", default-features = true }
2020-03-24 18:24:20 +01:00
2021-01-17 15:26:00 +01:00
async-std = { version = "1.9.0", features = ["attributes"] }
futures = { version = "0.3.12", features = ["executor", "thread-pool"] }
2020-03-24 18:24:20 +01:00
2021-01-17 15:26:00 +01:00
figment = "0.10.2"
2020-11-14 18:21:27 +01:00
2021-01-17 15:26:00 +01:00
serde = "1.0.119"
serde_derive = "1.0.119"
serde_json = "1.0"
2021-01-17 15:26:00 +01:00
tracing = "0.1.22"
tracing-futures = "0.2.4"
tracing-subscriber = "0.2.15"
rocket = { git = "https://github.com/SergioBenitez/Rocket", branch = "master" }
rocket_contrib = { git = "https://github.com/SergioBenitez/Rocket", branch = "master", features = ["handlebars_templates", "tera_templates"] }
2020-03-27 17:32:18 +01:00
educe = { version = "0.4.13", features = ["Debug", "Default", "Hash", "Clone", "Copy"] }