From 817a14b8a18dd14ae52514ea23fa5580677bc6b4 Mon Sep 17 00:00:00 2001 From: Rasmus Kaj Date: Tue, 19 Jan 2021 23:54:51 +0100 Subject: [PATCH] Update to tokio 1.0 * reqwest 0.11.0 * tokio 1.0.2 * warp 0.3.0 --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8fd89e6..c13482b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,12 +24,12 @@ mime = "0.3.0" r2d2-memcache = "0.6" rand = "0.8" regex = "1.3.6" -reqwest = { version = "0.10.4", features = ["json"] } +reqwest = { version = "0.11.0", features = ["json"] } serde = { version = "1.0.0", features = ["derive"] } serde_json = "1.0" slug = "0.1" structopt = { version = "0.3.0", features = ["wrap_help"] } -tokio = { version = "0.2", features = ["macros"] } +tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] } [dependencies.djangohashers] default-features = false @@ -43,4 +43,4 @@ version = "1.4.0" [dependencies.warp] default-features = false -version = "0.2.2" +version = "0.3.0"