It lives! Thanks to the cranelift team.

This commit is contained in:
2023-01-12 09:02:42 -08:00
parent a64983257c
commit cd3247ac9f
5 changed files with 20 additions and 7 deletions

View File

@@ -16,11 +16,11 @@ path = "src/bin.rs"
clap = { version = "^3.0.14", features = ["derive"] }
codespan = "0.11.1"
codespan-reporting = "0.11.1"
cranelift-codegen = "^0.89.2"
cranelift-frontend = "^0.89.2"
cranelift-module = "^0.89.2"
cranelift-native = "^0.89.2"
cranelift-object = "^0.89.2"
cranelift-codegen = { path = "vendor/wasmtime/cranelift/codegen" }
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" }
internment = { version = "0.7.0", default-features = false, features = ["arc"] }
lalrpop-util = "^0.19.7"
lazy_static = "^1.4.0"