Skip to content

Commit a42257d

Browse files
committed
Use local wasmtime fork
1 parent 967bafe commit a42257d

File tree

2 files changed

+26
-40
lines changed

2 files changed

+26
-40
lines changed

Cargo.lock

Lines changed: 14 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ crate-type = ["dylib"]
88

99
[dependencies]
1010
# These have to be in sync with each other
11-
cranelift-codegen = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "release-26.0.0", version = "0.113.0", default-features = false, features = ["std", "unwind", "all-native-arch"] }
12-
cranelift-frontend = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "release-26.0.0", version = "0.113.0" }
13-
cranelift-module = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "release-26.0.0", version = "0.113.0" }
14-
cranelift-native = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "release-26.0.0", version = "0.113.0" }
15-
cranelift-jit = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "release-26.0.0", version = "0.113.0", optional = true }
16-
cranelift-object = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "release-26.0.0", version = "0.113.0" }
11+
cranelift-codegen = { version = "0.114.0", default-features = false, features = ["std", "unwind"] }
12+
cranelift-frontend = { version = "0.114.0" }
13+
cranelift-module = { version = "0.114.0" }
14+
cranelift-native = { version = "0.114.0" }
15+
cranelift-jit = { version = "0.114.0", optional = true }
16+
cranelift-object = { version = "0.114.0" }
1717
target-lexicon = "0.12.0"
1818
gimli = { version = "0.31", default-features = false, features = ["write"] }
1919
object = { version = "0.36", default-features = false, features = ["std", "read_core", "write", "archive", "coff", "elf", "macho", "pe"] }
@@ -24,12 +24,12 @@ smallvec = "1.8.1"
2424

2525
[patch.crates-io]
2626
# Uncomment to use local checkout of cranelift
27-
#cranelift-codegen = { path = "../wasmtime/cranelift/codegen" }
28-
#cranelift-frontend = { path = "../wasmtime/cranelift/frontend" }
29-
#cranelift-module = { path = "../wasmtime/cranelift/module" }
30-
#cranelift-native = { path = "../wasmtime/cranelift/native" }
31-
#cranelift-jit = { path = "../wasmtime/cranelift/jit" }
32-
#cranelift-object = { path = "../wasmtime/cranelift/object" }
27+
cranelift-codegen = { path = "../wasmtime/cranelift/codegen" }
28+
cranelift-frontend = { path = "../wasmtime/cranelift/frontend" }
29+
cranelift-module = { path = "../wasmtime/cranelift/module" }
30+
cranelift-native = { path = "../wasmtime/cranelift/native" }
31+
cranelift-jit = { path = "../wasmtime/cranelift/jit" }
32+
cranelift-object = { path = "../wasmtime/cranelift/object" }
3333

3434
#gimli = { path = "../" }
3535

0 commit comments

Comments
 (0)