Update to Cranelift 0.26.0.

This commit is contained in:
Dan Gohman
2018-12-11 13:21:03 -08:00
parent 56850d481d
commit 6dd39dee6a
7 changed files with 23 additions and 23 deletions

View File

@@ -22,10 +22,10 @@ name = "wasm2obj"
path = "src/wasm2obj.rs" path = "src/wasm2obj.rs"
[dependencies] [dependencies]
cranelift-codegen = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } cranelift-codegen = "0.26.0"
cranelift-native = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } cranelift-native = "0.26.0"
cranelift-entity = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } cranelift-entity = "0.26.0"
cranelift-wasm = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } cranelift-wasm = "0.26.0"
wasmtime-environ = { path = "lib/environ" } wasmtime-environ = { path = "lib/environ" }
wasmtime-runtime = { path = "lib/runtime" } wasmtime-runtime = { path = "lib/runtime" }
wasmtime-execute = { path = "lib/execute" } wasmtime-execute = { path = "lib/execute" }

View File

@@ -10,9 +10,9 @@ cargo-fuzz = true
[dependencies] [dependencies]
wasmtime-environ = { path = "../lib/environ" } wasmtime-environ = { path = "../lib/environ" }
wasmtime-execute = { path = "../lib/execute" } wasmtime-execute = { path = "../lib/execute" }
cranelift-codegen = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } cranelift-codegen = "0.26.0"
cranelift-wasm = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } cranelift-wasm = "0.26.0"
cranelift-native = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } cranelift-native = "0.26.0"
libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" } libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" }
wasmparser = { version = "0.22.0", default-features = false } wasmparser = { version = "0.22.0", default-features = false }

View File

@@ -10,9 +10,9 @@ license = "Apache-2.0 WITH LLVM-exception"
readme = "README.md" readme = "README.md"
[dependencies] [dependencies]
cranelift-codegen = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } cranelift-codegen = "0.26.0"
cranelift-entity = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } cranelift-entity = "0.26.0"
cranelift-wasm = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } cranelift-wasm = "0.26.0"
cast = { version = "0.2.2", default-features = false } cast = { version = "0.2.2", default-features = false }
failure = { version = "0.1.3", default-features = false } failure = { version = "0.1.3", default-features = false }
failure_derive = { version = "0.1.3", default-features = false } failure_derive = { version = "0.1.3", default-features = false }

View File

@@ -10,10 +10,10 @@ license = "Apache-2.0 WITH LLVM-exception"
readme = "README.md" readme = "README.md"
[dependencies] [dependencies]
cranelift-codegen = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } cranelift-codegen = "0.26.0"
cranelift-entity = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } cranelift-entity = "0.26.0"
cranelift-wasm = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } cranelift-wasm = "0.26.0"
cranelift-frontend = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } cranelift-frontend = "0.26.0"
wasmtime-environ = { path = "../environ" } wasmtime-environ = { path = "../environ" }
wasmtime-runtime = { path = "../runtime" } wasmtime-runtime = { path = "../runtime" }
region = "1.0.0" region = "1.0.0"

View File

@@ -10,7 +10,7 @@ license = "Apache-2.0 WITH LLVM-exception"
readme = "README.md" readme = "README.md"
[dependencies] [dependencies]
cranelift-codegen = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } cranelift-codegen = "0.26.0"
cranelift-entity = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } cranelift-entity = "0.26.0"
wasmtime-environ = { path = "../environ" } wasmtime-environ = { path = "../environ" }
faerie = "0.6.0" faerie = "0.6.0"

View File

@@ -10,9 +10,9 @@ license = "Apache-2.0 WITH LLVM-exception"
readme = "README.md" readme = "README.md"
[dependencies] [dependencies]
cranelift-codegen = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } cranelift-codegen = "0.26.0"
cranelift-entity = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } cranelift-entity = "0.26.0"
cranelift-wasm = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } cranelift-wasm = "0.26.0"
wasmtime-environ = { path = "../environ" } wasmtime-environ = { path = "../environ" }
region = "1.0.0" region = "1.0.0"
lazy_static = "1.2.0" lazy_static = "1.2.0"

View File

@@ -10,10 +10,10 @@ license = "Apache-2.0 WITH LLVM-exception"
readme = "README.md" readme = "README.md"
[dependencies] [dependencies]
cranelift-codegen = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } cranelift-codegen = "0.26.0"
cranelift-native = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } cranelift-native = "0.26.0"
cranelift-wasm = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } cranelift-wasm = "0.26.0"
cranelift-entity = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } cranelift-entity = "0.26.0"
wasmtime-execute = { path = "../execute" } wasmtime-execute = { path = "../execute" }
wasmtime-runtime = { path = "../runtime" } wasmtime-runtime = { path = "../runtime" }
wasmtime-environ = { path = "../environ" } wasmtime-environ = { path = "../environ" }