Bump version to 0.24.0
I used a specially modified version of the publish script to avoid bumping the `witx` version.
This commit is contained in:
@@ -15,27 +15,27 @@ path = "src/clif-util.rs"
|
||||
|
||||
[dependencies]
|
||||
cfg-if = "1.0"
|
||||
cranelift-codegen = { path = "codegen", version = "0.70.0" }
|
||||
cranelift-entity = { path = "entity", version = "0.70.0" }
|
||||
cranelift-interpreter = { path = "interpreter", version = "0.70.0" }
|
||||
cranelift-reader = { path = "reader", version = "0.70.0" }
|
||||
cranelift-frontend = { path = "frontend", version = "0.70.0" }
|
||||
cranelift-serde = { path = "serde", version = "0.70.0", optional = true }
|
||||
cranelift-wasm = { path = "wasm", version = "0.70.0", optional = true }
|
||||
cranelift-native = { path = "native", version = "0.70.0" }
|
||||
cranelift-codegen = { path = "codegen", version = "0.71.0" }
|
||||
cranelift-entity = { path = "entity", version = "0.71.0" }
|
||||
cranelift-interpreter = { path = "interpreter", version = "0.71.0" }
|
||||
cranelift-reader = { path = "reader", version = "0.71.0" }
|
||||
cranelift-frontend = { path = "frontend", version = "0.71.0" }
|
||||
cranelift-serde = { path = "serde", version = "0.71.0", optional = true }
|
||||
cranelift-wasm = { path = "wasm", version = "0.71.0", optional = true }
|
||||
cranelift-native = { path = "native", version = "0.71.0" }
|
||||
cranelift-filetests = { path = "filetests", version = "0.66.0" }
|
||||
cranelift-module = { path = "module", version = "0.70.0" }
|
||||
cranelift-object = { path = "object", version = "0.70.0" }
|
||||
cranelift-jit = { path = "jit", version = "0.70.0" }
|
||||
cranelift-preopt = { path = "preopt", version = "0.70.0" }
|
||||
cranelift = { path = "umbrella", version = "0.70.0" }
|
||||
cranelift-module = { path = "module", version = "0.71.0" }
|
||||
cranelift-object = { path = "object", version = "0.71.0" }
|
||||
cranelift-jit = { path = "jit", version = "0.71.0" }
|
||||
cranelift-preopt = { path = "preopt", version = "0.71.0" }
|
||||
cranelift = { path = "umbrella", version = "0.71.0" }
|
||||
filecheck = "0.5.0"
|
||||
log = "0.4.8"
|
||||
termcolor = "1.1.2"
|
||||
capstone = { version = "0.7.0", optional = true }
|
||||
wat = { version = "1.0.36", optional = true }
|
||||
target-lexicon = { version = "0.11", features = ["std"] }
|
||||
peepmatic-souper = { path = "./peepmatic/crates/souper", version = "0.70.0", optional = true }
|
||||
peepmatic-souper = { path = "./peepmatic/crates/souper", version = "0.71.0", optional = true }
|
||||
pretty_env_logger = "0.4.0"
|
||||
rayon = { version = "1", optional = true }
|
||||
file-per-thread-logger = "0.1.2"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
name = "cranelift-bforest"
|
||||
version = "0.70.0"
|
||||
version = "0.71.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.70.0", default-features = false }
|
||||
cranelift-entity = { path = "../entity", version = "0.71.0", default-features = false }
|
||||
|
||||
[badges]
|
||||
maintenance = { status = "experimental" }
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
name = "cranelift-codegen"
|
||||
version = "0.70.0"
|
||||
version = "0.71.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.70.0" }
|
||||
cranelift-entity = { path = "../entity", version = "0.70.0" }
|
||||
cranelift-bforest = { path = "../bforest", version = "0.70.0" }
|
||||
cranelift-codegen-shared = { path = "./shared", version = "0.71.0" }
|
||||
cranelift-entity = { path = "../entity", version = "0.71.0" }
|
||||
cranelift-bforest = { path = "../bforest", version = "0.71.0" }
|
||||
hashbrown = { version = "0.9.1", optional = true }
|
||||
target-lexicon = "0.11"
|
||||
log = { version = "0.4.6", default-features = false }
|
||||
@@ -25,9 +25,9 @@ gimli = { version = "0.23.0", default-features = false, features = ["write"], op
|
||||
smallvec = { version = "1.6.1" }
|
||||
thiserror = "1.0.4"
|
||||
byteorder = { version = "1.3.2", default-features = false }
|
||||
peepmatic = { path = "../peepmatic", optional = true, version = "0.70.0" }
|
||||
peepmatic-traits = { path = "../peepmatic/crates/traits", optional = true, version = "0.70.0" }
|
||||
peepmatic-runtime = { path = "../peepmatic/crates/runtime", optional = true, version = "0.70.0" }
|
||||
peepmatic = { path = "../peepmatic", optional = true, version = "0.71.0" }
|
||||
peepmatic-traits = { path = "../peepmatic/crates/traits", optional = true, version = "0.71.0" }
|
||||
peepmatic-runtime = { path = "../peepmatic/crates/runtime", optional = true, version = "0.71.0" }
|
||||
regalloc = { version = "0.0.31" }
|
||||
souper-ir = { version = "2.1.0", optional = true }
|
||||
wast = { version = "35.0.0", optional = true }
|
||||
@@ -37,7 +37,7 @@ wast = { version = "35.0.0", optional = true }
|
||||
# accomodated in `tests`.
|
||||
|
||||
[build-dependencies]
|
||||
cranelift-codegen-meta = { path = "meta", version = "0.70.0" }
|
||||
cranelift-codegen-meta = { path = "meta", version = "0.71.0" }
|
||||
|
||||
[features]
|
||||
default = ["std", "unwind"]
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "cranelift-codegen-meta"
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
version = "0.70.0"
|
||||
version = "0.71.0"
|
||||
description = "Metaprogram for cranelift-codegen code generator library"
|
||||
license = "Apache-2.0 WITH LLVM-exception"
|
||||
repository = "https://github.com/bytecodealliance/wasmtime"
|
||||
@@ -12,8 +12,8 @@ edition = "2018"
|
||||
rustdoc-args = [ "--document-private-items" ]
|
||||
|
||||
[dependencies]
|
||||
cranelift-codegen-shared = { path = "../shared", version = "0.70.0" }
|
||||
cranelift-entity = { path = "../../entity", version = "0.70.0" }
|
||||
cranelift-codegen-shared = { path = "../shared", version = "0.71.0" }
|
||||
cranelift-entity = { path = "../../entity", version = "0.71.0" }
|
||||
|
||||
[badges]
|
||||
maintenance = { status = "experimental" }
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
name = "cranelift-codegen-shared"
|
||||
version = "0.70.0"
|
||||
version = "0.71.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"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
name = "cranelift-entity"
|
||||
version = "0.70.0"
|
||||
version = "0.71.0"
|
||||
description = "Data structures using entity references as mapping keys"
|
||||
license = "Apache-2.0 WITH LLVM-exception"
|
||||
documentation = "https://docs.rs/cranelift-entity"
|
||||
|
||||
@@ -10,12 +10,12 @@ publish = false
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
cranelift-codegen = { path = "../codegen", version = "0.70.0", features = ["testing_hooks"] }
|
||||
cranelift-frontend = { path = "../frontend", version = "0.70.0" }
|
||||
cranelift-interpreter = { path = "../interpreter", version = "0.70.0" }
|
||||
cranelift-native = { path = "../native", version = "0.70.0" }
|
||||
cranelift-reader = { path = "../reader", version = "0.70.0" }
|
||||
cranelift-preopt = { path = "../preopt", version = "0.70.0" }
|
||||
cranelift-codegen = { path = "../codegen", version = "0.71.0", features = ["testing_hooks"] }
|
||||
cranelift-frontend = { path = "../frontend", version = "0.71.0" }
|
||||
cranelift-interpreter = { path = "../interpreter", version = "0.71.0" }
|
||||
cranelift-native = { path = "../native", version = "0.71.0" }
|
||||
cranelift-reader = { path = "../reader", version = "0.71.0" }
|
||||
cranelift-preopt = { path = "../preopt", version = "0.71.0" }
|
||||
byteorder = { version = "1.3.2", default-features = false }
|
||||
file-per-thread-logger = "0.1.2"
|
||||
filecheck = "0.5.0"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
name = "cranelift-frontend"
|
||||
version = "0.70.0"
|
||||
version = "0.71.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.70.0", default-features = false }
|
||||
cranelift-codegen = { path = "../codegen", version = "0.71.0", default-features = false }
|
||||
target-lexicon = "0.11"
|
||||
log = { version = "0.4.6", default-features = false }
|
||||
hashbrown = { version = "0.9.1", optional = true }
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "cranelift-interpreter"
|
||||
version = "0.70.0"
|
||||
version = "0.71.0"
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
description = "Interpret Cranelift IR"
|
||||
repository = "https://github.com/bytecodealliance/wasmtime"
|
||||
@@ -11,15 +11,15 @@ readme = "README.md"
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
cranelift-codegen = { path = "../codegen", version = "0.70.0", features = ["all-arch"] }
|
||||
cranelift-entity = { path = "../entity", version = "0.70.0" }
|
||||
cranelift-reader = { path = "../reader", version = "0.70.0" }
|
||||
cranelift-codegen = { path = "../codegen", version = "0.71.0", features = ["all-arch"] }
|
||||
cranelift-entity = { path = "../entity", version = "0.71.0" }
|
||||
cranelift-reader = { path = "../reader", version = "0.71.0" }
|
||||
log = { version = "0.4.8", default-features = false }
|
||||
smallvec = "1.6.1"
|
||||
thiserror = "1.0.15"
|
||||
|
||||
[dev-dependencies]
|
||||
cranelift-frontend = { path = "../frontend", version = "0.70.0" }
|
||||
cranelift-frontend = { path = "../frontend", version = "0.71.0" }
|
||||
|
||||
[badges]
|
||||
maintenance = { status = "experimental" }
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "cranelift-jit"
|
||||
version = "0.70.0"
|
||||
version = "0.71.0"
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
description = "A JIT library backed by Cranelift"
|
||||
repository = "https://github.com/bytecodealliance/wasmtime"
|
||||
@@ -10,10 +10,10 @@ readme = "README.md"
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
cranelift-module = { path = "../module", version = "0.70.0" }
|
||||
cranelift-native = { path = "../native", version = "0.70.0" }
|
||||
cranelift-codegen = { path = "../codegen", version = "0.70.0", default-features = false, features = ["std"] }
|
||||
cranelift-entity = { path = "../entity", version = "0.70.0" }
|
||||
cranelift-module = { path = "../module", version = "0.71.0" }
|
||||
cranelift-native = { path = "../native", version = "0.71.0" }
|
||||
cranelift-codegen = { path = "../codegen", version = "0.71.0", default-features = false, features = ["std"] }
|
||||
cranelift-entity = { path = "../entity", version = "0.71.0" }
|
||||
anyhow = "1.0"
|
||||
region = "2.2.0"
|
||||
libc = { version = "0.2.42" }
|
||||
@@ -30,9 +30,9 @@ selinux-fix = ['memmap2']
|
||||
default = []
|
||||
|
||||
[dev-dependencies]
|
||||
cranelift = { path = "../umbrella", version = "0.70.0" }
|
||||
cranelift-frontend = { path = "../frontend", version = "0.70.0" }
|
||||
cranelift-entity = { path = "../entity", version = "0.70.0" }
|
||||
cranelift = { path = "../umbrella", version = "0.71.0" }
|
||||
cranelift-frontend = { path = "../frontend", version = "0.71.0" }
|
||||
cranelift-entity = { path = "../entity", version = "0.71.0" }
|
||||
|
||||
[badges]
|
||||
maintenance = { status = "experimental" }
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "cranelift-module"
|
||||
version = "0.70.0"
|
||||
version = "0.71.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.70.0", default-features = false }
|
||||
cranelift-entity = { path = "../entity", version = "0.70.0" }
|
||||
cranelift-codegen = { path = "../codegen", version = "0.71.0", default-features = false }
|
||||
cranelift-entity = { path = "../entity", version = "0.71.0" }
|
||||
hashbrown = { version = "0.9.1", optional = true }
|
||||
log = { version = "0.4.6", default-features = false }
|
||||
thiserror = "1.0.4"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "cranelift-native"
|
||||
version = "0.70.0"
|
||||
version = "0.71.0"
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
description = "Support for targeting the host with Cranelift"
|
||||
documentation = "https://docs.rs/cranelift-native"
|
||||
@@ -11,7 +11,7 @@ readme = "README.md"
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
cranelift-codegen = { path = "../codegen", version = "0.70.0", default-features = false }
|
||||
cranelift-codegen = { path = "../codegen", version = "0.71.0", default-features = false }
|
||||
target-lexicon = "0.11"
|
||||
|
||||
[features]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "cranelift-object"
|
||||
version = "0.70.0"
|
||||
version = "0.71.0"
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
description = "Emit Cranelift output to native object files with `object`"
|
||||
repository = "https://github.com/bytecodealliance/wasmtime"
|
||||
@@ -10,16 +10,16 @@ readme = "README.md"
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
cranelift-module = { path = "../module", version = "0.70.0" }
|
||||
cranelift-codegen = { path = "../codegen", version = "0.70.0", default-features = false, features = ["std"] }
|
||||
cranelift-module = { path = "../module", version = "0.71.0" }
|
||||
cranelift-codegen = { path = "../codegen", version = "0.71.0", default-features = false, features = ["std"] }
|
||||
object = { version = "0.23.0", default-features = false, features = ["write"] }
|
||||
target-lexicon = "0.11"
|
||||
anyhow = "1.0"
|
||||
log = { version = "0.4.6", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
cranelift-frontend = { path = "../frontend", version = "0.70.0" }
|
||||
cranelift-entity = { path = "../entity", version = "0.70.0" }
|
||||
cranelift-frontend = { path = "../frontend", version = "0.71.0" }
|
||||
cranelift-entity = { path = "../entity", version = "0.71.0" }
|
||||
|
||||
[badges]
|
||||
maintenance = { status = "experimental" }
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "peepmatic"
|
||||
version = "0.70.0"
|
||||
version = "0.71.0"
|
||||
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "Apache-2.0 WITH LLVM-exception"
|
||||
@@ -10,13 +10,13 @@ description = "DSL and compiler for generating peephole optimizers"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.27"
|
||||
peepmatic-automata = { version = "0.70.0", path = "crates/automata", features = ["dot"] }
|
||||
peepmatic-macro = { version = "0.70.0", path = "crates/macro" }
|
||||
peepmatic-runtime = { version = "0.70.0", path = "crates/runtime", features = ["construct"] }
|
||||
peepmatic-traits = { version = "0.70.0", path = "crates/traits" }
|
||||
peepmatic-automata = { version = "0.71.0", path = "crates/automata", features = ["dot"] }
|
||||
peepmatic-macro = { version = "0.71.0", path = "crates/macro" }
|
||||
peepmatic-runtime = { version = "0.71.0", path = "crates/runtime", features = ["construct"] }
|
||||
peepmatic-traits = { version = "0.71.0", path = "crates/traits" }
|
||||
serde = { version = "1.0.105", features = ["derive"] }
|
||||
wast = "35.0.0"
|
||||
z3 = { version = "0.7.1", features = ["static-link-z3"] }
|
||||
|
||||
[dev-dependencies]
|
||||
peepmatic-test-operator = { version = "0.70.0", path = "crates/test-operator" }
|
||||
peepmatic-test-operator = { version = "0.71.0", path = "crates/test-operator" }
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "peepmatic-automata"
|
||||
version = "0.70.0"
|
||||
version = "0.71.0"
|
||||
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "Apache-2.0 WITH LLVM-exception"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "peepmatic-macro"
|
||||
version = "0.70.0"
|
||||
version = "0.71.0"
|
||||
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "Apache-2.0 WITH LLVM-exception"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "peepmatic-runtime"
|
||||
version = "0.70.0"
|
||||
version = "0.71.0"
|
||||
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "Apache-2.0 WITH LLVM-exception"
|
||||
@@ -12,14 +12,14 @@ description = "Runtime support for peepmatic peephole optimizers"
|
||||
bincode = "1.2.1"
|
||||
bumpalo = "3.2.0"
|
||||
log = "0.4.8"
|
||||
peepmatic-automata = { version = "0.70.0", path = "../automata", features = ["serde"] }
|
||||
peepmatic-traits = { version = "0.70.0", path = "../traits" }
|
||||
peepmatic-automata = { version = "0.71.0", path = "../automata", features = ["serde"] }
|
||||
peepmatic-traits = { version = "0.71.0", path = "../traits" }
|
||||
serde = { version = "1.0.105", features = ["derive"] }
|
||||
thiserror = "1.0.15"
|
||||
wast = { version = "35.0.0", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
peepmatic-test-operator = { version = "0.70.0", path = "../test-operator" }
|
||||
peepmatic-test-operator = { version = "0.71.0", path = "../test-operator" }
|
||||
serde_test = "1.0.114"
|
||||
|
||||
[features]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "peepmatic-souper"
|
||||
version = "0.70.0"
|
||||
version = "0.71.0"
|
||||
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "Apache-2.0 WITH LLVM-exception"
|
||||
@@ -14,6 +14,6 @@ souper-ir = { version = "2.1.0", features = ["parse"] }
|
||||
log = "0.4.8"
|
||||
|
||||
[dev-dependencies]
|
||||
peepmatic = { path = "../..", version = "0.70.0" }
|
||||
peepmatic-test-operator = { version = "0.70.0", path = "../test-operator" }
|
||||
peepmatic = { path = "../..", version = "0.71.0" }
|
||||
peepmatic-test-operator = { version = "0.71.0", path = "../test-operator" }
|
||||
wast = "35.0.0"
|
||||
|
||||
@@ -2,13 +2,13 @@
|
||||
name = "peepmatic-test-operator"
|
||||
description = "Operator for usage in peepmatic tests"
|
||||
license = "Apache-2.0 WITH LLVM-exception"
|
||||
version = "0.70.0"
|
||||
version = "0.71.0"
|
||||
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
|
||||
edition = "2018"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
peepmatic-traits = { version = "0.70.0", path = "../traits" }
|
||||
peepmatic-traits = { version = "0.71.0", path = "../traits" }
|
||||
serde = { version = "1.0.105", features = ["derive"] }
|
||||
wast = "35.0.0"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "peepmatic-traits"
|
||||
version = "0.70.0"
|
||||
version = "0.71.0"
|
||||
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "Apache-2.0 WITH LLVM-exception"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
name = "cranelift-preopt"
|
||||
version = "0.70.0"
|
||||
version = "0.71.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.70.0", default-features = false }
|
||||
cranelift-entity = { path = "../entity", version = "0.70.0" }
|
||||
cranelift-codegen = { path = "../codegen", version = "0.71.0", default-features = false }
|
||||
cranelift-entity = { path = "../entity", version = "0.71.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 }
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
name = "cranelift-reader"
|
||||
version = "0.70.0"
|
||||
version = "0.71.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.70.0" }
|
||||
cranelift-codegen = { path = "../codegen", version = "0.71.0" }
|
||||
smallvec = "1.6.1"
|
||||
target-lexicon = "0.11"
|
||||
thiserror = "1.0.15"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "cranelift-serde"
|
||||
version = "0.70.0"
|
||||
version = "0.71.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.70.0", features = ["enable-serde"] }
|
||||
cranelift-reader = { path = "../reader", version = "0.70.0" }
|
||||
cranelift-codegen = { path = "../codegen", version = "0.71.0", features = ["enable-serde"] }
|
||||
cranelift-reader = { path = "../reader", version = "0.71.0" }
|
||||
|
||||
[badges]
|
||||
maintenance = { status = "experimental" }
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
name = "cranelift"
|
||||
version = "0.70.0"
|
||||
version = "0.71.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.70.0", default-features = false }
|
||||
cranelift-frontend = { path = "../frontend", version = "0.70.0", default-features = false }
|
||||
cranelift-codegen = { path = "../codegen", version = "0.71.0", default-features = false }
|
||||
cranelift-frontend = { path = "../frontend", version = "0.71.0", default-features = false }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "cranelift-wasm"
|
||||
version = "0.70.0"
|
||||
version = "0.71.0"
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
description = "Translator from WebAssembly to Cranelift IR"
|
||||
documentation = "https://docs.rs/cranelift-wasm"
|
||||
@@ -13,9 +13,9 @@ edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
wasmparser = { version = "0.76", default-features = false }
|
||||
cranelift-codegen = { path = "../codegen", version = "0.70.0", default-features = false }
|
||||
cranelift-entity = { path = "../entity", version = "0.70.0" }
|
||||
cranelift-frontend = { path = "../frontend", version = "0.70.0", default-features = false }
|
||||
cranelift-codegen = { path = "../codegen", version = "0.71.0", default-features = false }
|
||||
cranelift-entity = { path = "../entity", version = "0.71.0" }
|
||||
cranelift-frontend = { path = "../frontend", version = "0.71.0", default-features = false }
|
||||
hashbrown = { version = "0.9.1", optional = true }
|
||||
itertools = "0.10.0"
|
||||
log = { version = "0.4.6", default-features = false }
|
||||
@@ -27,7 +27,7 @@ thiserror = "1.0.4"
|
||||
wat = "1.0.36"
|
||||
target-lexicon = "0.11"
|
||||
# Enable the riscv feature for cranelift-codegen, as some tests require it
|
||||
cranelift-codegen = { path = "../codegen", version = "0.70.0", default-features = false, features = ["riscv"] }
|
||||
cranelift-codegen = { path = "../codegen", version = "0.71.0", default-features = false, features = ["riscv"] }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
Reference in New Issue
Block a user