2019-09-14 13:16:16 +02:00
|
|
|
[package]
|
|
|
|
name = "backend"
|
|
|
|
version = "0.1.0"
|
|
|
|
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" }
|
2019-09-14 13:16:16 +02:00
|
|
|
rand = { version = "0.6.5", default-features = true }
|
2020-03-24 18:24:20 +01:00
|
|
|
|
|
|
|
async-std = { version = "1.5.0", features = ["attributes"] }
|
|
|
|
futures = { version = "0.3.1", features = ["executor", "thread-pool"] }
|
|
|
|
|
2019-09-14 18:15:19 +02:00
|
|
|
serde = "1.0.100"
|
|
|
|
serde_derive = "1.0.100"
|
|
|
|
serde_json = "1.0"
|
2019-11-15 19:01:44 +01:00
|
|
|
tracing = "0.1.9"
|
|
|
|
tracing-futures = "0.1.0"
|
|
|
|
tracing-subscriber = "0.1.5"
|
2020-03-26 20:25:33 +01:00
|
|
|
rocket = { git = "https://github.com/SergioBenitez/Rocket", branch = "async" }
|
|
|
|
rocket_contrib = { git = "https://github.com/SergioBenitez/Rocket", branch = "async", features = ["handlebars_templates", "tera_templates"] }
|
2020-03-27 17:32:18 +01:00
|
|
|
|
|
|
|
rust-ini = "0.15.2"
|