diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-07-01 21:02:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-01 21:02:00 +0200 |
commit | 0f719aa79c2b471815c9d21014b37719c6557c1b (patch) | |
tree | e9060737ab4a35ae2f97cba3935c7b0f0c95e469 | |
parent | 476e4ed03c038a4c9306cf96045017464f2dbdf8 (diff) |
chore: upgrade rusty_v8 to 0.74.1 (#19677)
-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 f25aa141f..9e85d56a4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5854,9 +5854,9 @@ dependencies = [ [[package]] name = "v8" -version = "0.74.0" +version = "0.74.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9169f27f3ac2bcbaed828e0d463a335faaa1b2e802d8e6b5066fb9c0d657fe73" +checksum = "1202e0bd078112bf8d521491560645e1fd6955c4afd975c75b05596a7e7e4eea" dependencies = [ "bitflags 1.3.2", "fslock", diff --git a/Cargo.toml b/Cargo.toml index 585797a05..0cd91de48 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,7 +41,7 @@ license = "MIT" repository = "https://github.com/denoland/deno" [workspace.dependencies] -v8 = { version = "0.74.0", default-features = false } +v8 = { version = "0.74.1", default-features = false } deno_ast = { version = "0.27.0", features = ["transpiling"] } deno_core = { version = "0.191.0", path = "./core" } |