diff options
| author | Michael Woerister <michaelwoerister@posteo> | 2021-09-20 15:57:45 +0200 |
|---|---|---|
| committer | Michael Woerister <michaelwoerister@posteo> | 2021-09-20 15:57:45 +0200 |
| commit | 543a73d6780e4050e92908fe184a8a75b22fbe1c (patch) | |
| tree | 4aa93a1e8d7a285d9a772209753f3a734b8b8e62 | |
| parent | db1fb85cff63ad5fffe435e17128f99f9e1d970c (diff) | |
| download | rust-543a73d6780e4050e92908fe184a8a75b22fbe1c.tar.gz rust-543a73d6780e4050e92908fe184a8a75b22fbe1c.zip | |
Update odht crate to 0.3.0
This version of odht contains a potential fix for #89085.
| -rw-r--r-- | Cargo.lock | 4 | ||||
| -rw-r--r-- | compiler/rustc_hir/Cargo.toml | 2 | ||||
| -rw-r--r-- | compiler/rustc_metadata/Cargo.toml | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock index 7d7e44d1e5e..5917757ff3e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2323,9 +2323,9 @@ dependencies = [ [[package]] name = "odht" -version = "0.2.1" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b18a8d1c919d3e7b5c49708d08ef7d60bc2150a7c3a8244257c54ca3f625010" +checksum = "d2504d29fda40b3f2f9ef525392435ab660e407c188196cb664b116ebcca0142" dependencies = [ "cfg-if 1.0.0", ] diff --git a/compiler/rustc_hir/Cargo.toml b/compiler/rustc_hir/Cargo.toml index ff6758e66df..61b941fd756 100644 --- a/compiler/rustc_hir/Cargo.toml +++ b/compiler/rustc_hir/Cargo.toml @@ -17,4 +17,4 @@ rustc_serialize = { path = "../rustc_serialize" } rustc_ast = { path = "../rustc_ast" } tracing = "0.1" smallvec = { version = "1.6.1", features = ["union", "may_dangle"] } -odht = { version = "0.2.1", features = ["nightly"] } +odht = { version = "0.3.0", features = ["nightly"] } diff --git a/compiler/rustc_metadata/Cargo.toml b/compiler/rustc_metadata/Cargo.toml index 42596f3318d..6b874aafa10 100644 --- a/compiler/rustc_metadata/Cargo.toml +++ b/compiler/rustc_metadata/Cargo.toml @@ -8,7 +8,7 @@ doctest = false [dependencies] libc = "0.2" -odht = { version = "0.2.1", features = ["nightly"] } +odht = { version = "0.3.0", features = ["nightly"] } snap = "1" tracing = "0.1" smallvec = { version = "1.6.1", features = ["union", "may_dangle"] } |
