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" }
|
2020-11-11 22:21:56 +01:00
|
|
|
rand = { version = "0.7.3", default-features = true }
|
2020-03-24 18:24:20 +01:00
|
|
|
|
2020-11-11 22:21:56 +01:00
|
|
|
async-std = { version = "1.7.0", features = ["attributes"] }
|
|
|
|
futures = { version = "0.3.8", features = ["executor", "thread-pool"] }
|
2020-03-24 18:24:20 +01:00
|
|
|
|
2020-11-14 18:21:27 +01:00
|
|
|
figment = "0.9.4"
|
|
|
|
|
2020-11-11 22:21:56 +01:00
|
|
|
serde = "1.0.117"
|
|
|
|
serde_derive = "1.0.117"
|
2019-09-14 18:15:19 +02:00
|
|
|
serde_json = "1.0"
|
2020-11-11 22:21:56 +01:00
|
|
|
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 17:32:18 +01:00
|
|
|
|
2020-11-11 22:21:56 +01:00
|
|
|
educe = { version = "0.4.13", features = ["Debug", "Default", "Hash", "Clone", "Copy"] }
|