Auto merge of #89117 - michaelwoerister:update-to-odht-0.3, r=wesleywiser

Update odht crate to 0.3.0

This version of odht contains a potential fix for #89085.

r? `@wesleywiser`
This commit is contained in:
bors 2021-09-20 17:38:07 +00:00
commit 60e70cc909
3 changed files with 4 additions and 4 deletions

View File

@ -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",
]

View File

@ -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"] }

View File

@ -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"] }