diff options
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" |