diff options
author | Arthur Silva <arthurprs@gmail.com> | 2022-07-28 12:46:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-28 12:46:10 +0200 |
commit | 5d263c932faf210f5b7a1e448a8eb26a2ac3ba68 (patch) | |
tree | 589b96bda5d4bae441e54ad01ff863c9fd9f37ea /core | |
parent | fad8d7d32a08095c82af39f77e3280c52a7ab2ae (diff) |
serde_v8: improvements to avoid hitting unimplemented codepaths (#13915)
Diffstat (limited to 'core')
-rw-r--r-- | core/Cargo.toml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/Cargo.toml b/core/Cargo.toml index a0549fcda..3de4d63a3 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -20,7 +20,9 @@ v8_use_custom_libcxx = ["v8/use_custom_libcxx"] anyhow = "1.0.57" deno_ops = { path = "../ops", version = "0.22.0" } futures = "0.3.21" -indexmap = "1.8.1" +# Stay on 1.6 to avoid a dependency cycle in ahash https://github.com/tkaitchuck/aHash/issues/95 +# Projects not depending on ahash are unafected as cargo will pull any 1.X that is >= 1.6. +indexmap = "1.6" libc = "0.2.126" log = "0.4.16" once_cell = "1.10.0" |