diff options
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 | ||||
-rw-r--r-- | core/Cargo.toml | 2 | ||||
-rw-r--r-- | test_util/Cargo.toml | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock index f0856e3a2..31f53cf93 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2418,9 +2418,9 @@ checksum = "53953d2d3a5ad81d9f844a32f14ebb121f50b650cd59d0ee2a07cf13c617efed" [[package]] name = "tokio" -version = "0.2.21" +version = "0.2.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d099fa27b9702bed751524694adbe393e18b36b204da91eb1cbbbbb4a5ee2d58" +checksum = "5d34ca54d84bf2b5b4d7d31e901a8464f7b60ac145a284fba25ceb801f2ddccd" dependencies = [ "bytes 0.5.5", "fnv", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 7dc64b9ba..58afdf019 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -52,7 +52,7 @@ sys-info = "0.7.0" sourcemap = "6.0.0" tempfile = "3.1.0" termcolor = "1.1.0" -tokio = { version = "0.2.21", features = ["full"] } +tokio = { version = "0.2.22", features = ["full"] } tokio-rustls = "0.13.1" url = "2.1.1" utime = "0.3.0" diff --git a/core/Cargo.toml b/core/Cargo.toml index d1bc4ce93..065948f82 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -31,4 +31,4 @@ path = "examples/http_bench.rs" # These dependendencies are only used for deno_core_http_bench. [dev-dependencies] derive_deref = "1.1.0" -tokio = { version = "0.2.21", features = ["full"] } +tokio = { version = "0.2.22", features = ["full"] } diff --git a/test_util/Cargo.toml b/test_util/Cargo.toml index 2d0ecc3ae..b9444a594 100644 --- a/test_util/Cargo.toml +++ b/test_util/Cargo.toml @@ -10,7 +10,7 @@ name = "test_server" path = "src/test_server.rs" [dependencies] -tokio = { version = "0.2.21", features = ["full"] } +tokio = { version = "0.2.22", features = ["full"] } futures = { version = "0.3.5", features = ["compat", "io-compat"] } bytes = "0.5.5" lazy_static = "1.4.0" |