From 990cce7267dae9bdd37ef772db2edeef2a39365b Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Fri, 22 Jan 2021 21:11:48 -0500 Subject: Use Tokio 1 (#306) * upgrade all the things Signed-off-by: Christine Dodrill * build(deps): bump serde from 1.0.118 to 1.0.120 Bumps [serde](https://github.com/serde-rs/serde) from 1.0.118 to 1.0.120. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.118...v1.0.120) Signed-off-by: dependabot-preview[bot] * fix Signed-off-by: Christine Dodrill Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> --- lib/cfcache/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/cfcache') diff --git a/lib/cfcache/Cargo.toml b/lib/cfcache/Cargo.toml index 85060c2..8ca353d 100644 --- a/lib/cfcache/Cargo.toml +++ b/lib/cfcache/Cargo.toml @@ -7,8 +7,8 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -reqwest = { version = "0.10", features = ["json"] } -serde_json = "1.0" +reqwest = { version = "0.11", features = ["json"] } +serde_json = "1" serde = { version = "1", features = ["derive"] } thiserror = "1" tracing = "0.1" @@ -17,4 +17,4 @@ tracing-futures = "0.2" [dev-dependencies] eyre = "0.6.5" kankyo = "0.3" -tokio = { version = "0.2", features = ["full"] } +tokio = { version = "1", features = ["full"] } -- cgit v1.2.3