1[package] 2name = "cranelift-native" 3version = "0.131.1" 4authors = ["The Cranelift Project Developers"] 5description = "Support for targeting the host with Cranelift" 6documentation = "https://docs.rs/cranelift-native" 7repository = "https://github.com/bytecodealliance/wasmtime" 8categories = ["no-std"] 9license = "Apache-2.0 WITH LLVM-exception" 10readme = "README.md" 11edition.workspace = true 12rust-version.workspace = true 13 14[dependencies] 15cranelift-codegen = { workspace = true } 16target-lexicon = { workspace = true } 17 18[target.'cfg(target_arch = "riscv64")'.dependencies] 19libc = { workspace = true } 20 21[features] 22default = ["std"] 23std = ["cranelift-codegen/std"] 24core = ["cranelift-codegen/core"] 25