1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

chore: upgrade v8 from 9.7 to 9.8 (#13269)

This commit is contained in:
Ben Noordhuis 2022-01-04 11:49:34 +01:00 committed by GitHub
parent 01ff7a8784
commit 7746cc7a04
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

4
Cargo.lock generated
View file

@ -4603,9 +4603,9 @@ dependencies = [
[[package]]
name = "v8"
version = "0.36.0"
version = "0.37.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "506523e86ccc15982be412bdde87a142771c139e94a8ecedda1da051a079b81d"
checksum = "79c23626c332f60f29dbed43424b72989e9bac028ef12ac55d959da99abd9a34"
dependencies = [
"bitflags",
"fslock",

View file

@ -25,7 +25,7 @@ serde = { version = "1.0.129", features = ["derive"] }
serde_json = { version = "1.0.66", features = ["preserve_order"] }
serde_v8 = { version = "0.23.0", path = "../serde_v8" }
url = { version = "2.2.2", features = ["serde"] }
v8 = "0.36.0"
v8 = "0.37.0"
[[example]]
name = "http_bench_json_ops"

View file

@ -12,7 +12,7 @@ description = "Rust to V8 serialization and deserialization"
[dependencies]
serde = { version = "1.0.130", features = ["derive"] }
serde_bytes = "0.11"
v8 = "0.36.0"
v8 = "0.37.0"
[dev-dependencies]
bencher = "0.1"