diff --git a/Cargo.toml b/Cargo.toml index ab271724b8..cf3098cbeb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,10 +22,10 @@ name = "wasm2obj" path = "src/wasm2obj.rs" [dependencies] -cranelift-codegen = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } -cranelift-native = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } -cranelift-entity = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } -cranelift-wasm = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } +cranelift-codegen = "0.26.0" +cranelift-native = "0.26.0" +cranelift-entity = "0.26.0" +cranelift-wasm = "0.26.0" wasmtime-environ = { path = "lib/environ" } wasmtime-runtime = { path = "lib/runtime" } wasmtime-execute = { path = "lib/execute" } diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 3e83ceabc1..8f82cb5f27 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -10,9 +10,9 @@ cargo-fuzz = true [dependencies] wasmtime-environ = { path = "../lib/environ" } wasmtime-execute = { path = "../lib/execute" } -cranelift-codegen = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } -cranelift-wasm = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } -cranelift-native = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } +cranelift-codegen = "0.26.0" +cranelift-wasm = "0.26.0" +cranelift-native = "0.26.0" libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" } wasmparser = { version = "0.22.0", default-features = false } diff --git a/lib/environ/Cargo.toml b/lib/environ/Cargo.toml index ea22ee484e..72ebb243f1 100644 --- a/lib/environ/Cargo.toml +++ b/lib/environ/Cargo.toml @@ -10,9 +10,9 @@ license = "Apache-2.0 WITH LLVM-exception" readme = "README.md" [dependencies] -cranelift-codegen = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } -cranelift-entity = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } -cranelift-wasm = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } +cranelift-codegen = "0.26.0" +cranelift-entity = "0.26.0" +cranelift-wasm = "0.26.0" cast = { version = "0.2.2", default-features = false } failure = { version = "0.1.3", default-features = false } failure_derive = { version = "0.1.3", default-features = false } diff --git a/lib/execute/Cargo.toml b/lib/execute/Cargo.toml index 04ccc51617..2f22e7e4df 100644 --- a/lib/execute/Cargo.toml +++ b/lib/execute/Cargo.toml @@ -10,10 +10,10 @@ license = "Apache-2.0 WITH LLVM-exception" readme = "README.md" [dependencies] -cranelift-codegen = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } -cranelift-entity = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } -cranelift-wasm = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } -cranelift-frontend = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } +cranelift-codegen = "0.26.0" +cranelift-entity = "0.26.0" +cranelift-wasm = "0.26.0" +cranelift-frontend = "0.26.0" wasmtime-environ = { path = "../environ" } wasmtime-runtime = { path = "../runtime" } region = "1.0.0" diff --git a/lib/obj/Cargo.toml b/lib/obj/Cargo.toml index 9f7415a55b..5e0616e83a 100644 --- a/lib/obj/Cargo.toml +++ b/lib/obj/Cargo.toml @@ -10,7 +10,7 @@ license = "Apache-2.0 WITH LLVM-exception" readme = "README.md" [dependencies] -cranelift-codegen = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } -cranelift-entity = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } +cranelift-codegen = "0.26.0" +cranelift-entity = "0.26.0" wasmtime-environ = { path = "../environ" } faerie = "0.6.0" diff --git a/lib/runtime/Cargo.toml b/lib/runtime/Cargo.toml index 6c329b3991..a7a77ed96f 100644 --- a/lib/runtime/Cargo.toml +++ b/lib/runtime/Cargo.toml @@ -10,9 +10,9 @@ license = "Apache-2.0 WITH LLVM-exception" readme = "README.md" [dependencies] -cranelift-codegen = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } -cranelift-entity = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } -cranelift-wasm = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } +cranelift-codegen = "0.26.0" +cranelift-entity = "0.26.0" +cranelift-wasm = "0.26.0" wasmtime-environ = { path = "../environ" } region = "1.0.0" lazy_static = "1.2.0" diff --git a/lib/wast/Cargo.toml b/lib/wast/Cargo.toml index 376331af6b..4562b500d0 100644 --- a/lib/wast/Cargo.toml +++ b/lib/wast/Cargo.toml @@ -10,10 +10,10 @@ license = "Apache-2.0 WITH LLVM-exception" readme = "README.md" [dependencies] -cranelift-codegen = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } -cranelift-native = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } -cranelift-wasm = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } -cranelift-entity = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" } +cranelift-codegen = "0.26.0" +cranelift-native = "0.26.0" +cranelift-wasm = "0.26.0" +cranelift-entity = "0.26.0" wasmtime-execute = { path = "../execute" } wasmtime-runtime = { path = "../runtime" } wasmtime-environ = { path = "../environ" }