1[package] 2name = "cranelift-codegen-meta" 3authors = ["The Cranelift Project Developers"] 4version = "0.130.0" 5description = "Metaprogram for cranelift-codegen code generator library" 6license = "Apache-2.0 WITH LLVM-exception" 7repository = "https://github.com/bytecodealliance/wasmtime" 8readme = "README.md" 9edition.workspace = true 10rust-version.workspace = true 11 12[lints] 13workspace = true 14 15[package.metadata.docs.rs] 16rustdoc-args = ["--document-private-items"] 17 18[dependencies] 19cranelift-srcgen = { workspace = true } 20cranelift-assembler-x64-meta = { path = "../../assembler-x64/meta", version = "0.130.0" } 21cranelift-codegen-shared = { path = "../shared", version = "0.130.0" } 22pulley-interpreter = { workspace = true, optional = true } 23heck = "0.5.0" 24 25[features] 26pulley = ['dep:pulley-interpreter'] 27