bump versions

This commit is contained in:
ajuvercr 2021-01-17 15:26:00 +01:00
parent ef5399217d
commit 4dc946ef92
2 changed files with 8 additions and 7 deletions

View File

@ -8,17 +8,17 @@ edition = "2018"
[dependencies]
mozaic = { git = "https://github.com/ZeusWPI/MOZAICP" }
rand = { version = "0.7.3", default-features = true }
rand = { version = "0.8.2", default-features = true }
async-std = { version = "1.7.0", features = ["attributes"] }
futures = { version = "0.3.8", features = ["executor", "thread-pool"] }
async-std = { version = "1.9.0", features = ["attributes"] }
futures = { version = "0.3.12", features = ["executor", "thread-pool"] }
figment = "0.9.4"
figment = "0.10.2"
serde = "1.0.117"
serde_derive = "1.0.117"
serde = "1.0.119"
serde_derive = "1.0.119"
serde_json = "1.0"
tracing = "0.1.21"
tracing = "0.1.22"
tracing-futures = "0.2.4"
tracing-subscriber = "0.2.15"
rocket = { git = "https://github.com/SergioBenitez/Rocket", branch = "master" }

View File

@ -108,6 +108,7 @@ fn generate_string_id() -> String {
rand::thread_rng()
.sample_iter(&rand::distributions::Alphanumeric)
.take(15)
.map(|x| x as char)
.collect::<String>()
+ ".json"
}