Path: blob/main/cranelift/codegen/meta/Cargo.toml
1692 views
[package]1name = "cranelift-codegen-meta"2authors = ["The Cranelift Project Developers"]3version = "0.125.0"4description = "Metaprogram for cranelift-codegen code generator library"5license = "Apache-2.0 WITH LLVM-exception"6repository = "https://github.com/bytecodealliance/wasmtime"7readme = "README.md"8edition.workspace = true9rust-version.workspace = true1011[lints]12workspace = true1314[package.metadata.docs.rs]15rustdoc-args = ["--document-private-items"]1617[dependencies]18cranelift-srcgen = { workspace = true }19cranelift-assembler-x64-meta = { path = "../../assembler-x64/meta", version = "0.125.0" }20cranelift-codegen-shared = { path = "../shared", version = "0.125.0" }21pulley-interpreter = { workspace = true, optional = true }22heck = "0.5.0"2324[features]25pulley = ['dep:pulley-interpreter']262728