diff --git a/cranelift/Cargo.toml b/cranelift/Cargo.toml index 1bd2dd33ee..f154579a9f 100644 --- a/cranelift/Cargo.toml +++ b/cranelift/Cargo.toml @@ -15,7 +15,7 @@ path = "src/clif-util.rs" [dependencies] cfg-if = "0.1" cranelift-codegen = { path = "lib/codegen", version = "0.20.0" } -cranelift-entity = { path = "lib/entity", version = "0.20.0" } +cranelift-entity = { path = "lib/entity", version = "0.20.1" } cranelift-reader = { path = "lib/reader", version = "0.20.0" } cranelift-frontend = { path = "lib/frontend", version = "0.20.0" } cranelift-serde = { path = "lib/serde", version = "0.20.0", optional = true } diff --git a/lib/bforest/Cargo.toml b/lib/bforest/Cargo.toml index 60384aa950..b68d9e9ea2 100644 --- a/lib/bforest/Cargo.toml +++ b/lib/bforest/Cargo.toml @@ -11,7 +11,7 @@ readme = "README.md" keywords = ["btree", "forest", "set", "map"] [dependencies] -cranelift-entity = { path = "../entity", version = "0.20.0", default-features = false } +cranelift-entity = { path = "../entity", version = "0.20.1", default-features = false } [features] default = ["std"] diff --git a/lib/codegen/Cargo.toml b/lib/codegen/Cargo.toml index 6d01017994..9ec8ea6260 100644 --- a/lib/codegen/Cargo.toml +++ b/lib/codegen/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["compile", "compiler", "jit"] build = "build.rs" [dependencies] -cranelift-entity = { path = "../entity", version = "0.20.0", default-features = false } +cranelift-entity = { path = "../entity", version = "0.20.1", default-features = false } cranelift-bforest = { path = "../bforest", version = "0.20.0", default-features = false } failure = { version = "0.1.1", default-features = false, features = ["derive"] } failure_derive = { version = "0.1.1", default-features = false } diff --git a/lib/entity/Cargo.toml b/lib/entity/Cargo.toml index 55706b934c..c74e605f76 100644 --- a/lib/entity/Cargo.toml +++ b/lib/entity/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-entity" -version = "0.20.0" +version = "0.20.1" description = "Data structures using entity references as mapping keys" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" diff --git a/lib/module/Cargo.toml b/lib/module/Cargo.toml index b11955802a..26f7a621af 100644 --- a/lib/module/Cargo.toml +++ b/lib/module/Cargo.toml @@ -11,7 +11,7 @@ readme = "README.md" [dependencies] cranelift-codegen = { path = "../codegen", version = "0.20.0", default-features = false } -cranelift-entity = { path = "../entity", version = "0.20.0", default-features = false } +cranelift-entity = { path = "../entity", version = "0.20.1", default-features = false } hashmap_core = { version = "0.1.9", optional = true } failure = "0.1.1" log = { version = "0.4.4", default-features = false, features = ["release_max_level_warn"] } diff --git a/lib/wasm/Cargo.toml b/lib/wasm/Cargo.toml index 2f765068a3..dfe3f18388 100644 --- a/lib/wasm/Cargo.toml +++ b/lib/wasm/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["webassembly", "wasm"] [dependencies] wasmparser = { version = "0.17.2", default-features = false } cranelift-codegen = { path = "../codegen", version = "0.20.0", default-features = false } -cranelift-entity = { path = "../entity", version = "0.20.0", default-features = false } +cranelift-entity = { path = "../entity", version = "0.20.1", default-features = false } cranelift-frontend = { path = "../frontend", version = "0.20.0", default-features = false } hashmap_core = { version = "0.1.9", optional = true } failure = { version = "0.1.1", default-features = false, features = ["derive"] }