From af709ded948faac0e4973abe206140adb8bf9f96 Mon Sep 17 00:00:00 2001 From: Nathan Froyd Date: Tue, 17 Mar 2020 15:29:20 -0400 Subject: [PATCH] bump cranelift version to 0.60.0 (#1328) --- Cargo.lock | 36 ++++++++++++++--------------- cranelift/Cargo.toml | 30 ++++++++++++------------ cranelift/bforest/Cargo.toml | 4 ++-- cranelift/codegen/Cargo.toml | 10 ++++---- cranelift/codegen/meta/Cargo.toml | 6 ++--- cranelift/codegen/shared/Cargo.toml | 2 +- cranelift/entity/Cargo.toml | 2 +- cranelift/faerie/Cargo.toml | 6 ++--- cranelift/filetests/Cargo.toml | 10 ++++---- cranelift/frontend/Cargo.toml | 4 ++-- cranelift/module/Cargo.toml | 6 ++--- cranelift/native/Cargo.toml | 4 ++-- cranelift/object/Cargo.toml | 6 ++--- cranelift/preopt/Cargo.toml | 6 ++--- cranelift/reader/Cargo.toml | 4 ++-- cranelift/serde/Cargo.toml | 6 ++--- cranelift/simplejit/Cargo.toml | 14 +++++------ cranelift/umbrella/Cargo.toml | 6 ++--- cranelift/wasm/Cargo.toml | 8 +++---- crates/environ/Cargo.toml | 8 +++---- crates/jit/Cargo.toml | 10 ++++---- crates/lightbeam/Cargo.toml | 2 +- 22 files changed, 95 insertions(+), 95 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5323dedf7c..b830a78b57 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -404,7 +404,7 @@ dependencies = [ [[package]] name = "cranelift" -version = "0.59.0" +version = "0.60.0" dependencies = [ "cranelift-codegen", "cranelift-frontend", @@ -412,14 +412,14 @@ dependencies = [ [[package]] name = "cranelift-bforest" -version = "0.59.0" +version = "0.60.0" dependencies = [ "cranelift-entity", ] [[package]] name = "cranelift-codegen" -version = "0.59.0" +version = "0.60.0" dependencies = [ "byteorder", "cranelift-bforest", @@ -437,7 +437,7 @@ dependencies = [ [[package]] name = "cranelift-codegen-meta" -version = "0.59.0" +version = "0.60.0" dependencies = [ "cranelift-codegen-shared", "cranelift-entity", @@ -445,18 +445,18 @@ dependencies = [ [[package]] name = "cranelift-codegen-shared" -version = "0.59.0" +version = "0.60.0" [[package]] name = "cranelift-entity" -version = "0.59.0" +version = "0.60.0" dependencies = [ "serde", ] [[package]] name = "cranelift-faerie" -version = "0.59.0" +version = "0.60.0" dependencies = [ "anyhow", "cranelift-codegen", @@ -468,7 +468,7 @@ dependencies = [ [[package]] name = "cranelift-filetests" -version = "0.59.0" +version = "0.60.0" dependencies = [ "byteorder", "cranelift-codegen", @@ -486,7 +486,7 @@ dependencies = [ [[package]] name = "cranelift-frontend" -version = "0.59.0" +version = "0.60.0" dependencies = [ "cranelift-codegen", "hashbrown", @@ -497,7 +497,7 @@ dependencies = [ [[package]] name = "cranelift-module" -version = "0.59.0" +version = "0.60.0" dependencies = [ "anyhow", "cranelift-codegen", @@ -509,7 +509,7 @@ dependencies = [ [[package]] name = "cranelift-native" -version = "0.59.0" +version = "0.60.0" dependencies = [ "cranelift-codegen", "raw-cpuid", @@ -518,7 +518,7 @@ dependencies = [ [[package]] name = "cranelift-object" -version = "0.59.0" +version = "0.60.0" dependencies = [ "cranelift-codegen", "cranelift-module", @@ -529,7 +529,7 @@ dependencies = [ [[package]] name = "cranelift-preopt" -version = "0.59.0" +version = "0.60.0" dependencies = [ "cranelift-codegen", "cranelift-entity", @@ -537,7 +537,7 @@ dependencies = [ [[package]] name = "cranelift-reader" -version = "0.59.0" +version = "0.60.0" dependencies = [ "cranelift-codegen", "target-lexicon", @@ -545,7 +545,7 @@ dependencies = [ [[package]] name = "cranelift-serde" -version = "0.59.0" +version = "0.60.0" dependencies = [ "clap", "cranelift-codegen", @@ -557,7 +557,7 @@ dependencies = [ [[package]] name = "cranelift-simplejit" -version = "0.59.0" +version = "0.60.0" dependencies = [ "cranelift", "cranelift-codegen", @@ -575,7 +575,7 @@ dependencies = [ [[package]] name = "cranelift-tools" -version = "0.59.0" +version = "0.60.0" dependencies = [ "capstone", "cfg-if", @@ -607,7 +607,7 @@ dependencies = [ [[package]] name = "cranelift-wasm" -version = "0.59.0" +version = "0.60.0" dependencies = [ "cranelift-codegen", "cranelift-entity", diff --git a/cranelift/Cargo.toml b/cranelift/Cargo.toml index 96073ab469..054e8ebcf2 100644 --- a/cranelift/Cargo.toml +++ b/cranelift/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cranelift-tools" authors = ["The Cranelift Project Developers"] -version = "0.59.0" +version = "0.60.0" description = "Binaries for testing the Cranelift libraries" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://github.com/bytecodealliance/wasmtime/blob/master/cranelift/docs/index.md" @@ -15,20 +15,20 @@ path = "src/clif-util.rs" [dependencies] cfg-if = "0.1" -cranelift-codegen = { path = "codegen", version = "0.59.0" } -cranelift-entity = { path = "entity", version = "0.59.0" } -cranelift-reader = { path = "reader", version = "0.59.0" } -cranelift-frontend = { path = "frontend", version = "0.59.0" } -cranelift-serde = { path = "serde", version = "0.59.0", optional = true } -cranelift-wasm = { path = "wasm", version = "0.59.0", optional = true } -cranelift-native = { path = "native", version = "0.59.0" } -cranelift-filetests = { path = "filetests", version = "0.59.0" } -cranelift-module = { path = "module", version = "0.59.0" } -cranelift-faerie = { path = "faerie", version = "0.59.0" } -cranelift-object = { path = "object", version = "0.59.0" } -cranelift-simplejit = { path = "simplejit", version = "0.59.0" } -cranelift-preopt = { path = "preopt", version = "0.59.0" } -cranelift = { path = "umbrella", version = "0.59.0" } +cranelift-codegen = { path = "codegen", version = "0.60.0" } +cranelift-entity = { path = "entity", version = "0.60.0" } +cranelift-reader = { path = "reader", version = "0.60.0" } +cranelift-frontend = { path = "frontend", version = "0.60.0" } +cranelift-serde = { path = "serde", version = "0.60.0", optional = true } +cranelift-wasm = { path = "wasm", version = "0.60.0", optional = true } +cranelift-native = { path = "native", version = "0.60.0" } +cranelift-filetests = { path = "filetests", version = "0.60.0" } +cranelift-module = { path = "module", version = "0.60.0" } +cranelift-faerie = { path = "faerie", version = "0.60.0" } +cranelift-object = { path = "object", version = "0.60.0" } +cranelift-simplejit = { path = "simplejit", version = "0.60.0" } +cranelift-preopt = { path = "preopt", version = "0.60.0" } +cranelift = { path = "umbrella", version = "0.60.0" } filecheck = "0.4.0" clap = "2.32.0" serde = "1.0.8" diff --git a/cranelift/bforest/Cargo.toml b/cranelift/bforest/Cargo.toml index 7430b423c5..de06853d1e 100644 --- a/cranelift/bforest/Cargo.toml +++ b/cranelift/bforest/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-bforest" -version = "0.59.0" +version = "0.60.0" description = "A forest of B+-trees" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://docs.rs/cranelift-bforest" @@ -12,7 +12,7 @@ keywords = ["btree", "forest", "set", "map"] edition = "2018" [dependencies] -cranelift-entity = { path = "../entity", version = "0.59.0", default-features = false } +cranelift-entity = { path = "../entity", version = "0.60.0", default-features = false } [badges] maintenance = { status = "experimental" } diff --git a/cranelift/codegen/Cargo.toml b/cranelift/codegen/Cargo.toml index 44b135df53..9a7787e484 100644 --- a/cranelift/codegen/Cargo.toml +++ b/cranelift/codegen/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-codegen" -version = "0.59.0" +version = "0.60.0" description = "Low-level code generator library" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://docs.rs/cranelift-codegen" @@ -13,9 +13,9 @@ build = "build.rs" edition = "2018" [dependencies] -cranelift-codegen-shared = { path = "./shared", version = "0.59.0" } -cranelift-entity = { path = "../entity", version = "0.59.0" } -cranelift-bforest = { path = "../bforest", version = "0.59.0" } +cranelift-codegen-shared = { path = "./shared", version = "0.60.0" } +cranelift-entity = { path = "../entity", version = "0.60.0" } +cranelift-bforest = { path = "../bforest", version = "0.60.0" } hashbrown = { version = "0.6", optional = true } target-lexicon = "0.10" log = { version = "0.4.6", default-features = false } @@ -30,7 +30,7 @@ byteorder = { version = "1.3.2", default-features = false } # accomodated in `tests`. [build-dependencies] -cranelift-codegen-meta = { path = "meta", version = "0.59.0" } +cranelift-codegen-meta = { path = "meta", version = "0.60.0" } [features] default = ["std", "unwind"] diff --git a/cranelift/codegen/meta/Cargo.toml b/cranelift/codegen/meta/Cargo.toml index 246176d488..f18af99287 100644 --- a/cranelift/codegen/meta/Cargo.toml +++ b/cranelift/codegen/meta/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cranelift-codegen-meta" authors = ["The Cranelift Project Developers"] -version = "0.59.0" +version = "0.60.0" description = "Metaprogram for cranelift-codegen code generator library" license = "Apache-2.0 WITH LLVM-exception" repository = "https://github.com/bytecodealliance/wasmtime" @@ -9,8 +9,8 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-codegen-shared = { path = "../shared", version = "0.59.0" } -cranelift-entity = { path = "../../entity", version = "0.59.0" } +cranelift-codegen-shared = { path = "../shared", version = "0.60.0" } +cranelift-entity = { path = "../../entity", version = "0.60.0" } [badges] maintenance = { status = "experimental" } diff --git a/cranelift/codegen/shared/Cargo.toml b/cranelift/codegen/shared/Cargo.toml index da480296ab..aec492f06a 100644 --- a/cranelift/codegen/shared/Cargo.toml +++ b/cranelift/codegen/shared/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-codegen-shared" -version = "0.59.0" +version = "0.60.0" description = "For code shared between cranelift-codegen-meta and cranelift-codegen" license = "Apache-2.0 WITH LLVM-exception" repository = "https://github.com/bytecodealliance/wasmtime" diff --git a/cranelift/entity/Cargo.toml b/cranelift/entity/Cargo.toml index 7b29816b0c..93738ca004 100644 --- a/cranelift/entity/Cargo.toml +++ b/cranelift/entity/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-entity" -version = "0.59.0" +version = "0.60.0" description = "Data structures using entity references as mapping keys" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://docs.rs/cranelift-entity" diff --git a/cranelift/faerie/Cargo.toml b/cranelift/faerie/Cargo.toml index a692b3db11..af1168dfa6 100644 --- a/cranelift/faerie/Cargo.toml +++ b/cranelift/faerie/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-faerie" -version = "0.59.0" +version = "0.60.0" authors = ["The Cranelift Project Developers"] description = "Emit Cranelift output to native object files with Faerie" repository = "https://github.com/bytecodealliance/wasmtime" @@ -10,7 +10,7 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-module = { path = "../module", version = "0.59.0" } +cranelift-module = { path = "../module", version = "0.60.0" } faerie = "0.15.0" goblin = "0.1.0" anyhow = "1.0" @@ -18,7 +18,7 @@ target-lexicon = "0.10" [dependencies.cranelift-codegen] path = "../codegen" -version = "0.59.0" +version = "0.60.0" default-features = false features = ["std"] diff --git a/cranelift/filetests/Cargo.toml b/cranelift/filetests/Cargo.toml index 971575d7ba..2a4e04b379 100644 --- a/cranelift/filetests/Cargo.toml +++ b/cranelift/filetests/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cranelift-filetests" authors = ["The Cranelift Project Developers"] -version = "0.59.0" +version = "0.60.0" description = "Test driver and implementations of the filetest commands" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://docs.rs/cranelift-filetests" @@ -10,10 +10,10 @@ publish = false edition = "2018" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.59.0", features = ["testing_hooks"] } -cranelift-native = { path = "../native", version = "0.59.0" } -cranelift-reader = { path = "../reader", version = "0.59.0" } -cranelift-preopt = { path = "../preopt", version = "0.59.0" } +cranelift-codegen = { path = "../codegen", version = "0.60.0", features = ["testing_hooks"] } +cranelift-native = { path = "../native", version = "0.60.0" } +cranelift-reader = { path = "../reader", version = "0.60.0" } +cranelift-preopt = { path = "../preopt", version = "0.60.0" } file-per-thread-logger = "0.1.2" filecheck = "0.4.0" gimli = { version = "0.20.0", default-features = false, features = ["read"] } diff --git a/cranelift/frontend/Cargo.toml b/cranelift/frontend/Cargo.toml index 20d454c965..c8ec5b18d8 100644 --- a/cranelift/frontend/Cargo.toml +++ b/cranelift/frontend/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-frontend" -version = "0.59.0" +version = "0.60.0" description = "Cranelift IR builder helper" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://docs.rs/cranelift-frontend" @@ -11,7 +11,7 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.59.0", default-features = false } +cranelift-codegen = { path = "../codegen", version = "0.60.0", default-features = false } target-lexicon = "0.10" log = { version = "0.4.6", default-features = false } hashbrown = { version = "0.6", optional = true } diff --git a/cranelift/module/Cargo.toml b/cranelift/module/Cargo.toml index 423b2fdf85..a2241e6074 100644 --- a/cranelift/module/Cargo.toml +++ b/cranelift/module/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-module" -version = "0.59.0" +version = "0.60.0" authors = ["The Cranelift Project Developers"] description = "Support for linking functions and data with Cranelift" repository = "https://github.com/bytecodealliance/wasmtime" @@ -11,8 +11,8 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.59.0", default-features = false } -cranelift-entity = { path = "../entity", version = "0.59.0" } +cranelift-codegen = { path = "../codegen", version = "0.60.0", default-features = false } +cranelift-entity = { path = "../entity", version = "0.60.0" } hashbrown = { version = "0.6", optional = true } log = { version = "0.4.6", default-features = false } thiserror = "1.0.4" diff --git a/cranelift/native/Cargo.toml b/cranelift/native/Cargo.toml index e4cdf461cf..feb5c15ee5 100644 --- a/cranelift/native/Cargo.toml +++ b/cranelift/native/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-native" -version = "0.59.0" +version = "0.60.0" authors = ["The Cranelift Project Developers"] description = "Support for targeting the host with Cranelift" repository = "https://github.com/bytecodealliance/wasmtime" @@ -10,7 +10,7 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.59.0", default-features = false } +cranelift-codegen = { path = "../codegen", version = "0.60.0", default-features = false } target-lexicon = "0.10" [target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies] diff --git a/cranelift/object/Cargo.toml b/cranelift/object/Cargo.toml index 7ba5788994..2bd68f5714 100644 --- a/cranelift/object/Cargo.toml +++ b/cranelift/object/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-object" -version = "0.59.0" +version = "0.60.0" authors = ["The Cranelift Project Developers"] description = "Emit Cranelift output to native object files with `object`" repository = "https://github.com/bytecodealliance/wasmtime" @@ -10,14 +10,14 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-module = { path = "../module", version = "0.59.0" } +cranelift-module = { path = "../module", version = "0.60.0" } object = { version = "0.17", default-features = false, features = ["write"] } target-lexicon = "0.10" goblin = "0.1.0" [dependencies.cranelift-codegen] path = "../codegen" -version = "0.59.0" +version = "0.60.0" default-features = false features = ["std"] diff --git a/cranelift/preopt/Cargo.toml b/cranelift/preopt/Cargo.toml index 82c0c1e4de..95350accfc 100644 --- a/cranelift/preopt/Cargo.toml +++ b/cranelift/preopt/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-preopt" -version = "0.59.0" +version = "0.60.0" description = "Support for optimizations in Cranelift" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://docs.rs/cranelift-preopt" @@ -12,8 +12,8 @@ keywords = ["optimize", "compile", "compiler", "jit"] edition = "2018" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.59.0", default-features = false } -cranelift-entity = { path = "../entity", version = "0.59.0" } +cranelift-codegen = { path = "../codegen", version = "0.60.0", default-features = false } +cranelift-entity = { path = "../entity", version = "0.60.0" } # This is commented out because it doesn't build on Rust 1.25.0, which # cranelift currently supports. # rustc_apfloat = { version = "0.1.2", default-features = false } diff --git a/cranelift/reader/Cargo.toml b/cranelift/reader/Cargo.toml index 8a782ebf18..bb6a165877 100644 --- a/cranelift/reader/Cargo.toml +++ b/cranelift/reader/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-reader" -version = "0.59.0" +version = "0.60.0" description = "Cranelift textual IR reader" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://docs.rs/cranelift-reader" @@ -10,7 +10,7 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.59.0" } +cranelift-codegen = { path = "../codegen", version = "0.60.0" } target-lexicon = "0.10" [badges] diff --git a/cranelift/serde/Cargo.toml b/cranelift/serde/Cargo.toml index 56625e0c37..68b70f64f7 100644 --- a/cranelift/serde/Cargo.toml +++ b/cranelift/serde/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-serde" -version = "0.59.0" +version = "0.60.0" authors = ["The Cranelift Project Developers"] description = "Serializer/Deserializer for Cranelift IR" repository = "https://github.com/bytecodealliance/wasmtime" @@ -18,8 +18,8 @@ clap = "2.32.0" serde = "1.0.8" serde_derive = "1.0.75" serde_json = "1.0.26" -cranelift-codegen = { path = "../codegen", version = "0.59.0" } -cranelift-reader = { path = "../reader", version = "0.59.0" } +cranelift-codegen = { path = "../codegen", version = "0.60.0" } +cranelift-reader = { path = "../reader", version = "0.60.0" } [badges] maintenance = { status = "experimental" } diff --git a/cranelift/simplejit/Cargo.toml b/cranelift/simplejit/Cargo.toml index 1a781b851a..50e4a5b574 100644 --- a/cranelift/simplejit/Cargo.toml +++ b/cranelift/simplejit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-simplejit" -version = "0.59.0" +version = "0.60.0" authors = ["The Cranelift Project Developers"] description = "A simple JIT library backed by Cranelift" repository = "https://github.com/bytecodealliance/wasmtime" @@ -10,8 +10,8 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-module = { path = "../module", version = "0.59.0" } -cranelift-native = { path = "../native", version = "0.59.0" } +cranelift-module = { path = "../module", version = "0.60.0" } +cranelift-native = { path = "../native", version = "0.60.0" } region = "2.0.0" libc = { version = "0.2.42" } errno = "0.2.4" @@ -20,7 +20,7 @@ memmap = { version = "0.7.0", optional = true } [dependencies.cranelift-codegen] path = "../codegen" -version = "0.59.0" +version = "0.60.0" default-features = false features = ["std"] @@ -32,9 +32,9 @@ selinux-fix = ['memmap'] default = [] [dev-dependencies] -cranelift = { path = "../umbrella", version = "0.59.0" } -cranelift-frontend = { path = "../frontend", version = "0.59.0" } -cranelift-entity = { path = "../entity", version = "0.59.0" } +cranelift = { path = "../umbrella", version = "0.60.0" } +cranelift-frontend = { path = "../frontend", version = "0.60.0" } +cranelift-entity = { path = "../entity", version = "0.60.0" } [badges] maintenance = { status = "experimental" } diff --git a/cranelift/umbrella/Cargo.toml b/cranelift/umbrella/Cargo.toml index 428f5800b5..93ad57a324 100644 --- a/cranelift/umbrella/Cargo.toml +++ b/cranelift/umbrella/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift" -version = "0.59.0" +version = "0.60.0" description = "Umbrella for commonly-used cranelift crates" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://docs.rs/cranelift" @@ -12,8 +12,8 @@ keywords = ["compile", "compiler", "jit"] edition = "2018" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.59.0", default-features = false } -cranelift-frontend = { path = "../frontend", version = "0.59.0", default-features = false } +cranelift-codegen = { path = "../codegen", version = "0.60.0", default-features = false } +cranelift-frontend = { path = "../frontend", version = "0.60.0", default-features = false } [features] default = ["std"] diff --git a/cranelift/wasm/Cargo.toml b/cranelift/wasm/Cargo.toml index e463a2048c..7b6e276aa9 100644 --- a/cranelift/wasm/Cargo.toml +++ b/cranelift/wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-wasm" -version = "0.59.0" +version = "0.60.0" authors = ["The Cranelift Project Developers"] description = "Translator from WebAssembly to Cranelift IR" repository = "https://github.com/bytecodealliance/wasmtime" @@ -12,9 +12,9 @@ edition = "2018" [dependencies] wasmparser = { version = "0.51.0", default-features = false } -cranelift-codegen = { path = "../codegen", version = "0.59.0", default-features = false } -cranelift-entity = { path = "../entity", version = "0.59.0" } -cranelift-frontend = { path = "../frontend", version = "0.59.0", default-features = false } +cranelift-codegen = { path = "../codegen", version = "0.60.0", default-features = false } +cranelift-entity = { path = "../entity", version = "0.60.0" } +cranelift-frontend = { path = "../frontend", version = "0.60.0", default-features = false } hashbrown = { version = "0.6", optional = true } log = { version = "0.4.6", default-features = false } serde = { version = "1.0.94", features = ["derive"], optional = true } diff --git a/crates/environ/Cargo.toml b/crates/environ/Cargo.toml index d90f9cd3cf..68e2b0a0ab 100644 --- a/crates/environ/Cargo.toml +++ b/crates/environ/Cargo.toml @@ -13,9 +13,9 @@ edition = "2018" [dependencies] anyhow = "1.0" -cranelift-codegen = { path = "../../cranelift/codegen", version = "0.59.0", features = ["enable-serde"] } -cranelift-entity = { path = "../../cranelift/entity", version = "0.59.0", features = ["enable-serde"] } -cranelift-wasm = { path = "../../cranelift/wasm", version = "0.59.0", features = ["enable-serde"] } +cranelift-codegen = { path = "../../cranelift/codegen", version = "0.60.0", features = ["enable-serde"] } +cranelift-entity = { path = "../../cranelift/entity", version = "0.60.0", features = ["enable-serde"] } +cranelift-wasm = { path = "../../cranelift/wasm", version = "0.60.0", features = ["enable-serde"] } wasmparser = "0.51.2" lightbeam = { path = "../lightbeam", optional = true, version = "0.12.0" } indexmap = "1.0.2" @@ -44,7 +44,7 @@ tempfile = "3" target-lexicon = { version = "0.10.0", default-features = false } pretty_env_logger = "0.3.0" rand = { version = "0.7.0", default-features = false, features = ["small_rng"] } -cranelift-codegen = { path = "../../cranelift/codegen", version = "0.59.0", features = ["enable-serde", "all-arch"] } +cranelift-codegen = { path = "../../cranelift/codegen", version = "0.60.0", features = ["enable-serde", "all-arch"] } filetime = "0.2.7" lazy_static = "1.3.0" diff --git a/crates/jit/Cargo.toml b/crates/jit/Cargo.toml index 83c2373de9..fa0614eb57 100644 --- a/crates/jit/Cargo.toml +++ b/crates/jit/Cargo.toml @@ -11,11 +11,11 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-codegen = { path = "../../cranelift/codegen", version = "0.59.0", features = ["enable-serde"] } -cranelift-entity = { path = "../../cranelift/entity", version = "0.59.0", features = ["enable-serde"] } -cranelift-wasm = { path = "../../cranelift/wasm", version = "0.59.0", features = ["enable-serde"] } -cranelift-native = { path = "../../cranelift/native", version = "0.59.0" } -cranelift-frontend = { path = "../../cranelift/frontend", version = "0.59.0" } +cranelift-codegen = { path = "../../cranelift/codegen", version = "0.60.0", features = ["enable-serde"] } +cranelift-entity = { path = "../../cranelift/entity", version = "0.60.0", features = ["enable-serde"] } +cranelift-wasm = { path = "../../cranelift/wasm", version = "0.60.0", features = ["enable-serde"] } +cranelift-native = { path = "../../cranelift/native", version = "0.60.0" } +cranelift-frontend = { path = "../../cranelift/frontend", version = "0.60.0" } wasmtime-environ = { path = "../environ", version = "0.12.0" } wasmtime-runtime = { path = "../runtime", version = "0.12.0" } wasmtime-debug = { path = "../debug", version = "0.12.0" } diff --git a/crates/lightbeam/Cargo.toml b/crates/lightbeam/Cargo.toml index e6cc26c8a3..f0d06a2198 100644 --- a/crates/lightbeam/Cargo.toml +++ b/crates/lightbeam/Cargo.toml @@ -19,7 +19,7 @@ memoffset = "0.5.3" itertools = "0.8.2" capstone = "0.6.0" thiserror = "1.0.9" -cranelift-codegen = { path = "../../cranelift/codegen", version = "0.59.0" } +cranelift-codegen = { path = "../../cranelift/codegen", version = "0.60.0" } multi_mut = "0.1" either = "1.5" typemap = "0.3"