diff --git a/Cargo.lock b/Cargo.lock index 3cf5ac480bfa..e15eb8694e6f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -103,6 +103,15 @@ name = "hashbrown" version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" +dependencies = [ + "ahash", +] + +[[package]] +name = "hashbrown" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db0d4cf898abf0081f964436dc980e96670a0f36863e4b83aaacdb65c9d7ccc3" dependencies = [ "ahash", "rayon", @@ -339,7 +348,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7cf01dbf1c05af0a14c7779ed6f3aa9deac9c3419606ac9de537a2d649005720" dependencies = [ "cfg-if 1.0.0", - "hashbrown", + "hashbrown 0.11.2", "indoc", "libc", "parking_lot", @@ -385,7 +394,7 @@ dependencies = [ name = "qiskit-terra" version = "0.20.0" dependencies = [ - "hashbrown", + "hashbrown 0.12.1", "ndarray", "numpy", "pyo3", diff --git a/Cargo.toml b/Cargo.toml index 1c88d5bceb28..f0bf306b3dbf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ version = "^0.15.0" features = ["rayon"] [dependencies.hashbrown] -version = "0.11.2" +version = "0.12.1" features = ["rayon"] [profile.release]