diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-12-07 21:20:01 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-08 03:20:01 +0100 |
commit | 8bf3e0f4c6980c0f3ed8b618062657b017a0f609 (patch) | |
tree | 7c86af7e633d171806bb292695f7f8ca5dfdf12b | |
parent | 4e025fd1640d192898792fc99e0d345279823899 (diff) |
upgrade rusty_v8 to 0.14.0 (#8663)
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | core/Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index 06b3c05e2..d24392447 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2196,9 +2196,9 @@ dependencies = [ [[package]] name = "rusty_v8" -version = "0.13.0" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abf06ea79ead18b3f81707b78e6d7813e83c772d0cb4b43caf3fa35a5df7eaab" +checksum = "6bdaa4aeeae3253c3b34486af66527d9982105d79ba57cf9b50b217e7b47a8b6" dependencies = [ "bitflags", "cargo_gn", diff --git a/core/Cargo.toml b/core/Cargo.toml index ed1f71c75..416bbc82d 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -19,7 +19,7 @@ indexmap = "1.6.0" lazy_static = "1.4.0" libc = "0.2.77" log = "0.4.11" -rusty_v8 = "0.13.0" +rusty_v8 = "0.14.0" serde_json = { version = "1.0", features = ["preserve_order"] } serde = { version = "1.0", features = ["derive"] } smallvec = "1.4.2" |