Add an optional Cranelift-based AOT compiler for WebAssembly functions, enabled via -DENABLE_CRANELIFT_JIT=ON.
22 lines
343 B
TOML
22 lines
343 B
TOML
[package]
|
|
name = "libwasm_cranelift"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
crate-type = ["rlib"]
|
|
|
|
[dependencies]
|
|
cranelift-codegen = "0.116"
|
|
cranelift-frontend = "0.116"
|
|
cranelift-module = "0.116"
|
|
cranelift-native = "0.116"
|
|
target-lexicon = "0.13"
|
|
libc = "0.2"
|
|
|
|
[build-dependencies]
|
|
cbindgen = "0.29"
|
|
regex = "1"
|
|
|
|
[lints]
|
|
workspace = true
|