diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2022-06-15 12:30:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-15 12:30:19 -0400 |
commit | 3d2394954c61a434bd6227ad3e0c5dea38361b6a (patch) | |
tree | 7c5bc87067eeee16f7e6c2f210a56eae6c2b58ab | |
parent | 845d4754c6fb959d1404f5de4bba9e71667b8c89 (diff) |
upgrade: v8 10.4.132.5 (#14874)
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | cli/tests/testdata/import_assertions/json_with_shebang.ts.out | 2 | ||||
-rw-r--r-- | core/Cargo.toml | 2 | ||||
-rw-r--r-- | serde_v8/Cargo.toml | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock index 3cbe90e45..312745991 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5022,9 +5022,9 @@ dependencies = [ [[package]] name = "v8" -version = "0.43.1" +version = "0.44.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c87ec36fec9ea2cd5a368ae9d0a662a7c5e8caa8768ec1fcc02bea623681b98" +checksum = "6e2fbb28bb40f70a7f840cb617244199fb7ca7c5e72d765a788d2de3f3baf589" dependencies = [ "bitflags", "fslock", diff --git a/cli/tests/testdata/import_assertions/json_with_shebang.ts.out b/cli/tests/testdata/import_assertions/json_with_shebang.ts.out index ae5f3a65f..23eb03720 100644 --- a/cli/tests/testdata/import_assertions/json_with_shebang.ts.out +++ b/cli/tests/testdata/import_assertions/json_with_shebang.ts.out @@ -1 +1 @@ -error: Uncaught SyntaxError: Unexpected token # in JSON at position 0 +error: Uncaught SyntaxError: Unexpected token '#', "#!/usr/env"... is not valid JSON diff --git a/core/Cargo.toml b/core/Cargo.toml index c0a936f87..ea22ed7cd 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -27,7 +27,7 @@ serde_json = { version = "1.0.79", features = ["preserve_order"] } serde_v8 = { version = "0.49.0", path = "../serde_v8" } sourcemap = "=6.0.1" url = { version = "2.2.2", features = ["serde"] } -v8 = "0.43.1" +v8 = "0.44.1" [[example]] name = "http_bench_json_ops" diff --git a/serde_v8/Cargo.toml b/serde_v8/Cargo.toml index 32b4a23a3..fea00a173 100644 --- a/serde_v8/Cargo.toml +++ b/serde_v8/Cargo.toml @@ -16,7 +16,7 @@ path = "lib.rs" bytes = "1" derive_more = "0.99.17" serde = { version = "1.0.136", features = ["derive"] } -v8 = "0.43.1" +v8 = "0.44.1" [dev-dependencies] bencher = "0.1" |