about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichael Woerister <michaelwoerister@posteo.de>2021-10-29 18:05:15 +0200
committerJosh Stone <jistone@redhat.com>2021-11-16 12:05:12 -0800
commitdc73bdc15be5c02e7785bfbc56ebe9081955b387 (patch)
tree06839cca57ac98c733a73d039d823b0e093bfeb7
parent96fd3708819c56ff90f9e5e5f7b8ff4d9013b7d1 (diff)
downloadrust-dc73bdc15be5c02e7785bfbc56ebe9081955b387.tar.gz
rust-dc73bdc15be5c02e7785bfbc56ebe9081955b387.zip
Update odht crate to 0.3.1 (big-endian bugfix)
(cherry picked from commit 6771ac3f19171ba9fa5b9c8d652d8fd7ad131444)
-rw-r--r--Cargo.lock4
-rw-r--r--compiler/rustc_hir/Cargo.toml2
-rw-r--r--compiler/rustc_metadata/Cargo.toml2
3 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 1a053cd5bba..dce7745076b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2315,9 +2315,9 @@ dependencies = [
 
 [[package]]
 name = "odht"
-version = "0.3.0"
+version = "0.3.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d2504d29fda40b3f2f9ef525392435ab660e407c188196cb664b116ebcca0142"
+checksum = "5a518809ac14b25b569624d0268eba1e88498f71615893dca57982bed7621abb"
 dependencies = [
  "cfg-if 1.0.0",
 ]
diff --git a/compiler/rustc_hir/Cargo.toml b/compiler/rustc_hir/Cargo.toml
index 3b6e6db72d1..41c63440ba3 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.3.0", features = ["nightly"] }
+odht = { version = "0.3.1", features = ["nightly"] }
diff --git a/compiler/rustc_metadata/Cargo.toml b/compiler/rustc_metadata/Cargo.toml
index f71fefd1799..dec77d996f3 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.3.0", features = ["nightly"] }
+odht = { version = "0.3.1", features = ["nightly"] }
 snap = "1"
 tracing = "0.1"
 smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }