planet-wars/backend/Cargo.toml

28 lines
945 B
TOML
Raw Normal View History

2019-09-14 11:16:16 +00:00
[package]
2020-06-14 20:20:08 +00:00
name = "planetwars"
version = "0.1.2"
2019-09-14 11:16:16 +00: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 17:30:17 +00:00
mozaic = { git = "https://github.com/ZeusWPI/MOZAICP" }
rand = { version = "0.7.3", default-features = true }
2020-03-24 17:24:20 +00:00
async-std = { version = "1.7.0", features = ["attributes"] }
futures = { version = "0.3.8", features = ["executor", "thread-pool"] }
2020-03-24 17:24:20 +00:00
2020-11-14 17:21:27 +00:00
figment = "0.9.4"
serde = "1.0.117"
serde_derive = "1.0.117"
serde_json = "1.0"
tracing = "0.1.21"
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 16:32:18 +00:00
educe = { version = "0.4.13", features = ["Debug", "Default", "Hash", "Clone", "Copy"] }