diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-12-13 17:07:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-13 17:07:18 +0100 |
commit | 12626b11f746d2a9bf7d5d068334e3008c33add0 (patch) | |
tree | 7bcc582308ca9ba382ae05e147438df0b16c8cdb | |
parent | 7526bbc584084bc27c4f69e31aac805ecbec4ea6 (diff) |
chore: upgrade rusty_v8 to 0.60.0 (#17033)
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index 5e1629739..1efb38285 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5351,9 +5351,9 @@ dependencies = [ [[package]] name = "v8" -version = "0.58.0" +version = "0.60.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e9b88668afedf6ec9f8f6d30b446f622498da2ef0b3991a52e10f0ea8c6cc09" +checksum = "5867543c19b87c45ed3f2bc49eb6135474ed6a1803cac40c278620b53e9865ef" dependencies = [ "bitflags", "fslock", diff --git a/Cargo.toml b/Cargo.toml index de0ceafbb..ae1d5e478 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ license = "MIT" repository = "https://github.com/denoland/deno" [workspace.dependencies] -v8 = { version = "0.58.0", default-features = false } +v8 = { version = "0.60.0", default-features = false } deno_ast = { version = "0.21.0", features = ["transpiling"] } deno_core = { version = "0.162.0", path = "./core" } |