diff options
author | Bert Belder <bertbelder@gmail.com> | 2020-08-12 17:09:48 +0200 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2020-08-12 17:45:15 +0200 |
commit | 3d70a2b94eac4d4032b8b11039efe6d070fa114f (patch) | |
tree | 0f6ff94c72ff8c47b46567efe9b545b61c4878b7 /core | |
parent | 988790834e9611b45663e48a7bea49219da7511f (diff) |
upgrade: Rust crates
The following crates were _not_ upgraded to avoid having multiple
versions of the same crate in the dependency tree:
* tokio-tungstenite v0.10.1 -> v0.11.0
* swc_common v0. 8.0 -> v0. 9.1
* swc_ecmascript v0. 1.0 -> v0. 3.0
* webpki-roots v0.19.0 -> v0.20.0
* nix v0.17.0 -> v0.18.0
Diffstat (limited to 'core')
-rw-r--r-- | core/Cargo.toml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/core/Cargo.toml b/core/Cargo.toml index 64fd6288b..0550c4539 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -14,14 +14,14 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] -downcast-rs = "1.1.1" +downcast-rs = "1.2.0" futures = "0.3.5" lazy_static = "1.4.0" -libc = "0.2.71" -log = "0.4.8" +libc = "0.2.74" +log = "0.4.11" rusty_v8 = "0.8.1" -serde_json = { version = "1.0.55", features = [ "preserve_order" ] } -smallvec = "1.4.0" +serde_json = { version = "1.0.57", features = [ "preserve_order" ] } +smallvec = "1.4.2" url = "2.1.1" [[example]] @@ -30,5 +30,5 @@ path = "examples/http_bench.rs" # These dependendencies are only used for deno_core_http_bench. [dev-dependencies] -derive_deref = "1.1.0" +derive_deref = "1.1.1" tokio = { version = "0.2.22", features = ["full"] } |