Skip to content

Commit 5e032ff

Browse files
committed
Use local wasmtime fork
Please do not review. I need to work on this project alone.
1 parent 19757ec commit 5e032ff

File tree

2 files changed

+37
-43
lines changed

2 files changed

+37
-43
lines changed

Cargo.lock

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

Cargo.toml

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

99
[dependencies]
1010
# These have to be in sync with each other
11-
cranelift-codegen = { version = "0.111.0", default-features = false, features = ["std", "unwind", "all-arch"] }
11+
cranelift-codegen = { version = "0.111.0", default-features = false, features = ["std", "unwind"] }
1212
cranelift-frontend = { version = "0.111.0" }
1313
cranelift-module = { version = "0.111.0" }
1414
cranelift-native = { version = "0.111.0" }
1515
cranelift-jit = { version = "0.111.0", optional = true }
1616
cranelift-object = { version = "0.111.0" }
1717
target-lexicon = "0.12.0"
18-
gimli = { version = "0.29", default-features = false, features = ["write"] }
18+
gimli = { version = "0.27", default-features = false, features = ["write"] }
1919
object = { version = "0.36", default-features = false, features = ["std", "read_core", "write", "archive", "coff", "elf", "macho", "pe"] }
2020

2121
indexmap = "2.0.0"
@@ -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)