diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-05-30 05:35:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-30 11:35:44 +0200 |
commit | dad551a3a77346d190663003e366dd94ce46626d (patch) | |
tree | d70c2c892eb04eac43e8370c013ef6f5df4531fd /core | |
parent | a82f24e9a8d269d43e32af10ae9cb6fd9bf88d9f (diff) |
upgrade: Rust crates (#5959)
Diffstat (limited to 'core')
-rw-r--r-- | core/Cargo.toml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/Cargo.toml b/core/Cargo.toml index aa4820ee8..1aac0c9f5 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -15,12 +15,12 @@ path = "lib.rs" [dependencies] downcast-rs = "1.1.1" -futures = { version = "0.3.4", features = ["thread-pool", "compat"] } +futures = { version = "0.3.5", features = ["thread-pool", "compat"] } lazy_static = "1.4.0" -libc = "0.2.69" +libc = "0.2.71" log = "0.4.8" rusty_v8 = "0.4.2" -serde_json = "1.0.52" +serde_json = "1.0.53" url = "2.1.1" [[example]] @@ -30,4 +30,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.20", features = ["rt-core", "tcp"] } +tokio = { version = "0.2.21", features = ["rt-core", "tcp"] } |