diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-04-08 12:31:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-08 12:31:47 -0400 |
commit | a4c1e1bdcf3bd295d624c266278670e08227b26b (patch) | |
tree | 49ca167dc1c867337d834327987c95f72b57b086 /core | |
parent | e411747e24b998c8178d0689aa7d63b0ad0e7046 (diff) |
fix: upgrade to swc_ecmascript 0.143 (#14238)
Diffstat (limited to 'core')
-rw-r--r-- | core/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Cargo.toml b/core/Cargo.toml index 6ef4de529..9c15aa4a2 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -20,7 +20,7 @@ indexmap = "1.7.0" libc = "0.2.121" log = "0.4.14" once_cell = "1.10.0" -parking_lot = "0.11.1" +parking_lot = "0.12.0" pin-project = "1.0.7" serde = { version = "1.0.129", features = ["derive"] } serde_json = { version = "1.0.66", features = ["preserve_order"] } @@ -34,5 +34,5 @@ path = "examples/http_bench_json_ops.rs" # These dependencies are only used for the 'http_bench_*_ops' examples. [dev-dependencies] -deno_ast = { version = "0.13.0", features = ["transpiling"] } +deno_ast = { version = "0.14.0", features = ["transpiling"] } tokio = { version = "1.17", features = ["full"] } |