Browse Source

Update the hashbrown to use the same version (#2338)

Signed-off-by: koushiro <koushiro.cqx@gmail.com>
pull/2339/head
Qinxuan Chen 4 years ago
committed by GitHub
parent
commit
3cd9d52d32
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 65
      Cargo.lock
  2. 2
      cranelift/codegen/Cargo.toml
  3. 2
      cranelift/frontend/Cargo.toml
  4. 1
      cranelift/interpreter/Cargo.toml
  5. 2
      cranelift/module/Cargo.toml
  6. 2
      cranelift/wasm/Cargo.toml

65
Cargo.lock

@ -17,18 +17,9 @@ checksum = "ee2a4ec343196209d6594e19543ae87a39f96d5534d7174822a3ad825dd6ed7e"
[[package]] [[package]]
name = "ahash" name = "ahash"
version = "0.2.18" version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f33b5018f120946c1dcf279194f238a9f146725593ead1c08fa47ff22b0b5d3"
dependencies = [
"const-random",
]
[[package]]
name = "ahash"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8fd72866655d1904d6b0997d0b07ba561047d070fbe29de039031c641b61217" checksum = "f6789e291be47ace86a60303502173d84af8327e3627ecf334356ee0f87a164c"
[[package]] [[package]]
name = "aho-corasick" name = "aho-corasick"
@ -326,26 +317,6 @@ dependencies = [
"winapi-util", "winapi-util",
] ]
[[package]]
name = "const-random"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2f1af9ac737b2dd2d577701e59fd09ba34822f6f2ebdb30a7647405d9e55e16a"
dependencies = [
"const-random-macro",
"proc-macro-hack",
]
[[package]]
name = "const-random-macro"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25e4c606eb459dd29f7c57b2e0879f2b6f14ee130918c2b78ccb58a9624e6c7a"
dependencies = [
"getrandom",
"proc-macro-hack",
]
[[package]] [[package]]
name = "constant_time_eq" name = "constant_time_eq"
version = "0.1.5" version = "0.1.5"
@ -388,7 +359,7 @@ dependencies = [
"cranelift-codegen-shared", "cranelift-codegen-shared",
"cranelift-entity", "cranelift-entity",
"gimli", "gimli",
"hashbrown 0.7.2", "hashbrown",
"log", "log",
"peepmatic", "peepmatic",
"peepmatic-runtime", "peepmatic-runtime",
@ -448,7 +419,7 @@ name = "cranelift-frontend"
version = "0.67.0" version = "0.67.0"
dependencies = [ dependencies = [
"cranelift-codegen", "cranelift-codegen",
"hashbrown 0.7.2", "hashbrown",
"log", "log",
"smallvec", "smallvec",
"target-lexicon", "target-lexicon",
@ -462,7 +433,6 @@ dependencies = [
"cranelift-entity", "cranelift-entity",
"cranelift-frontend", "cranelift-frontend",
"cranelift-reader", "cranelift-reader",
"hashbrown 0.7.2",
"log", "log",
"thiserror", "thiserror",
] ]
@ -474,7 +444,7 @@ dependencies = [
"anyhow", "anyhow",
"cranelift-codegen", "cranelift-codegen",
"cranelift-entity", "cranelift-entity",
"hashbrown 0.6.3", "hashbrown",
"log", "log",
"thiserror", "thiserror",
] ]
@ -592,7 +562,7 @@ dependencies = [
"cranelift-codegen", "cranelift-codegen",
"cranelift-entity", "cranelift-entity",
"cranelift-frontend", "cranelift-frontend",
"hashbrown 0.7.2", "hashbrown",
"itertools 0.9.0", "itertools 0.9.0",
"log", "log",
"serde", "serde",
@ -949,22 +919,11 @@ checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
[[package]] [[package]]
name = "hashbrown" name = "hashbrown"
version = "0.6.3" version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e6073d0ca812575946eb5f35ff68dbe519907b25c42530389ff946dc84c6ead"
dependencies = [
"ahash 0.2.18",
"autocfg 0.1.7",
]
[[package]]
name = "hashbrown"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96282e96bfcd3da0d3aa9938bedf1e50df3269b6db08b4876d2da0bb1a0841cf" checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
dependencies = [ dependencies = [
"ahash 0.3.8", "ahash",
"autocfg 1.0.0",
] ]
[[package]] [[package]]
@ -1429,12 +1388,6 @@ dependencies = [
"version_check", "version_check",
] ]
[[package]]
name = "proc-macro-hack"
version = "0.5.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e0456befd48169b9f13ef0f0ad46d492cf9d2dbb918bcf38e01eed4ce3ec5e4"
[[package]] [[package]]
name = "proc-macro2" name = "proc-macro2"
version = "1.0.18" version = "1.0.18"

2
cranelift/codegen/Cargo.toml

@ -16,7 +16,7 @@ edition = "2018"
cranelift-codegen-shared = { path = "./shared", version = "0.67.0" } cranelift-codegen-shared = { path = "./shared", version = "0.67.0" }
cranelift-entity = { path = "../entity", version = "0.67.0" } cranelift-entity = { path = "../entity", version = "0.67.0" }
cranelift-bforest = { path = "../bforest", version = "0.67.0" } cranelift-bforest = { path = "../bforest", version = "0.67.0" }
hashbrown = { version = "0.7", optional = true } hashbrown = { version = "0.9.1", optional = true }
target-lexicon = "0.11" target-lexicon = "0.11"
log = { version = "0.4.6", default-features = false } log = { version = "0.4.6", default-features = false }
serde = { version = "1.0.94", features = ["derive"], optional = true } serde = { version = "1.0.94", features = ["derive"], optional = true }

2
cranelift/frontend/Cargo.toml

@ -14,7 +14,7 @@ edition = "2018"
cranelift-codegen = { path = "../codegen", version = "0.67.0", default-features = false } cranelift-codegen = { path = "../codegen", version = "0.67.0", default-features = false }
target-lexicon = "0.11" target-lexicon = "0.11"
log = { version = "0.4.6", default-features = false } log = { version = "0.4.6", default-features = false }
hashbrown = { version = "0.7", optional = true } hashbrown = { version = "0.9.1", optional = true }
smallvec = { version = "1.0.0" } smallvec = { version = "1.0.0" }
[features] [features]

1
cranelift/interpreter/Cargo.toml

@ -14,7 +14,6 @@ edition = "2018"
cranelift-codegen = { path = "../codegen", version = "0.67.0", default-features = false } cranelift-codegen = { path = "../codegen", version = "0.67.0", default-features = false }
cranelift-entity = { path = "../entity", version = "0.67.0" } cranelift-entity = { path = "../entity", version = "0.67.0" }
cranelift-reader = { path = "../reader", version = "0.67.0" } cranelift-reader = { path = "../reader", version = "0.67.0" }
hashbrown = { version = "0.7.1", optional = true }
log = { version = "0.4.8", default-features = false } log = { version = "0.4.8", default-features = false }
thiserror = "1.0.15" thiserror = "1.0.15"

2
cranelift/module/Cargo.toml

@ -13,7 +13,7 @@ edition = "2018"
[dependencies] [dependencies]
cranelift-codegen = { path = "../codegen", version = "0.67.0", default-features = false } cranelift-codegen = { path = "../codegen", version = "0.67.0", default-features = false }
cranelift-entity = { path = "../entity", version = "0.67.0" } cranelift-entity = { path = "../entity", version = "0.67.0" }
hashbrown = { version = "0.6", optional = true } hashbrown = { version = "0.9.1", optional = true }
log = { version = "0.4.6", default-features = false } log = { version = "0.4.6", default-features = false }
thiserror = "1.0.4" thiserror = "1.0.4"
anyhow = "1.0" anyhow = "1.0"

2
cranelift/wasm/Cargo.toml

@ -16,7 +16,7 @@ wasmparser = { version = "0.63.0", default-features = false }
cranelift-codegen = { path = "../codegen", version = "0.67.0", default-features = false } cranelift-codegen = { path = "../codegen", version = "0.67.0", default-features = false }
cranelift-entity = { path = "../entity", version = "0.67.0" } cranelift-entity = { path = "../entity", version = "0.67.0" }
cranelift-frontend = { path = "../frontend", version = "0.67.0", default-features = false } cranelift-frontend = { path = "../frontend", version = "0.67.0", default-features = false }
hashbrown = { version = "0.7", optional = true } hashbrown = { version = "0.9.1", optional = true }
itertools = "0.9.0" itertools = "0.9.0"
log = { version = "0.4.6", default-features = false } log = { version = "0.4.6", default-features = false }
serde = { version = "1.0.94", features = ["derive"], optional = true } serde = { version = "1.0.94", features = ["derive"], optional = true }

Loading…
Cancel
Save