ladybird/Libraries/LibWasm/Rust/Cargo.toml
Ali Mohammad Pur a33e148339 LibWasm+Meta: Add Cranelift AOT compilation backend
Add an optional Cranelift-based AOT compiler for WebAssembly functions,
enabled via -DENABLE_CRANELIFT_JIT=ON.
2026-05-10 16:41:42 +02:00

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