Cargo.toml: Update our dependencies.

master
Damir Jelić 2020-01-11 13:13:30 +01:00
parent 5688b2e70a
commit 67221ecb54
2 changed files with 13 additions and 13 deletions

View File

@ -13,24 +13,24 @@ version = "0.1.0"
[dependencies]
js_int = "0.1.2"
futures = "0.3.1"
reqwest = "0.10.0-alpha.2"
http = "0.1.19"
async-std = "1.2.0"
ruma-api = "0.12.0-alpha.1"
ruma-client-api = "0.5.0-alpha.1"
reqwest = "0.10.1"
http = "0.2.0"
async-std = "1.4.0"
ruma-api = "0.12.0"
ruma-client-api = "0.5.0"
ruma-events = "0.15.1"
log = "0.4.8"
ruma-identifiers = "0.14.0"
serde_json = "1.0.42"
ruma-identifiers = "0.14.1"
serde_json = "1.0.44"
serde_urlencoded = "0.6.1"
url = "2.1.0"
url = "2.1.1"
[dependencies.serde]
version = "1.0.103"
version = "1.0.104"
features = ["derive"]
[dev-dependencies]
tokio = "0.2.0-alpha.6"
url = "2.1.0"
tokio = { version = "0.2.9", features = ["full"] }
url = "2.1.1"
mockito = "0.22.0"

View File

@ -10,7 +10,7 @@ use std::str::FromStr;
#[test]
fn login() {
let rt = Runtime::new().unwrap();
let mut rt = Runtime::new().unwrap();
let homeserver = Url::from_str(&mockito::server_url()).unwrap();
@ -29,7 +29,7 @@ fn login() {
#[test]
fn sync() {
let rt = Runtime::new().unwrap();
let mut rt = Runtime::new().unwrap();
let homeserver = Url::from_str(&mockito::server_url()).unwrap();