Upstream cranelift now works fine. Yay!

This commit is contained in:
2023-03-24 11:07:11 -05:00
parent 4aa3a9419a
commit 662e954720
3 changed files with 6 additions and 10 deletions

View File

@@ -12,12 +12,12 @@ path = "src/lib.rs"
clap = { version = "^3.0.14", features = ["derive"] }
codespan = "0.11.1"
codespan-reporting = "0.11.1"
cranelift-codegen = { path = "vendor/wasmtime/cranelift/codegen" }
cranelift-jit = { path = "vendor/wasmtime/cranelift/jit" }
cranelift-frontend = { path = "vendor/wasmtime/cranelift/frontend" }
cranelift-module = { path = "vendor/wasmtime/cranelift/module" }
cranelift-native = { path = "vendor/wasmtime/cranelift/native" }
cranelift-object = { path = "vendor/wasmtime/cranelift/object" }
cranelift-codegen = "0.94.0"
cranelift-jit = "0.94.0"
cranelift-frontend = "0.94.0"
cranelift-module = "0.94.0"
cranelift-native = "0.94.0"
cranelift-object = "0.94.0"
internment = { version = "0.7.0", default-features = false, features = ["arc"] }
lalrpop-util = "^0.19.7"
lazy_static = "^1.4.0"