diff options
author | Luca Casonato <hello@lcas.dev> | 2021-11-08 14:24:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-08 14:24:54 +0100 |
commit | 80d3a5f8be667c793d359ab7e67c5ede66b37f48 (patch) | |
tree | 41d0797fb99aa114b10e89ac13945d7b26dcf407 /core | |
parent | c91da1222b1a57a38aad4bca7af7fe88d8ef2476 (diff) |
feat: update to V8 9.7 (#12685)
This commit updates the rusty_v8 to 0.34.0. This commit also adds
the required typings for the new Array#findLast and Array#findIndexLast
methods.
Diffstat (limited to 'core')
-rw-r--r-- | core/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Cargo.toml b/core/Cargo.toml index 698717778..e5c9369c5 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -26,7 +26,7 @@ serde = { version = "1.0.129", features = ["derive"] } serde_json = { version = "1.0.66", features = ["preserve_order"] } serde_v8 = { version = "0.16.0", path = "../serde_v8" } url = { version = "2.2.2", features = ["serde"] } -v8 = "0.33.0" +v8 = "0.34.0" [[example]] name = "http_bench_json_ops" |