summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock4
-rw-r--r--cli/tests/integration_tests.rs4
-rw-r--r--core/Cargo.toml2
3 files changed, 6 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 427dc5921..f58d69eea 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1908,9 +1908,9 @@ dependencies = [
[[package]]
name = "rusty_v8"
-version = "0.9.1"
+version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "74794f26ec99d8baa7dc8499d520f122aad18fc022e79fc774e3c178040960f9"
+checksum = "20faaa8a28ea4b4ff35b9af88490313d5ce9aa6322a8a1779e66bd04415b4d1f"
dependencies = [
"bitflags",
"cargo_gn",
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs
index 44e56d246..dce0ce1b8 100644
--- a/cli/tests/integration_tests.rs
+++ b/cli/tests/integration_tests.rs
@@ -2105,7 +2105,9 @@ itest!(ts_type_imports {
exit_code: 1,
});
-itest!(ts_decorators {
+// Broken after V8 upgrade
+// https://github.com/denoland/deno/pull/7429
+itest_ignore!(ts_decorators {
args: "run --reload -c tsconfig.decorators.json ts_decorators.ts",
output: "ts_decorators.ts.out",
});
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 94681cf7d..7b5c34609 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -18,7 +18,7 @@ futures = "0.3.5"
lazy_static = "1.4.0"
libc = "0.2.74"
log = "0.4.11"
-rusty_v8 = "0.9.1"
+rusty_v8 = "0.10.0"
serde_json = { version = "1.0.57", features = ["preserve_order"] }
smallvec = "1.4.2"
url = "2.1.1"