Path: blob/main/cranelift/umbrella/Cargo.toml
1690 views
[package]1authors = ["The Cranelift Project Developers"]2name = "cranelift"3version = "0.125.0"4description = "Umbrella for commonly-used cranelift crates"5license = "Apache-2.0 WITH LLVM-exception"6documentation = "https://docs.rs/cranelift"7repository = "https://github.com/bytecodealliance/wasmtime"8categories = ["no-std"]9readme = "README.md"10keywords = ["compile", "compiler", "jit"]11edition.workspace = true12rust-version.workspace = true1314[dependencies]15cranelift-codegen = { workspace = true }16cranelift-frontend = { workspace = true, optional = true }17cranelift-interpreter = { workspace = true, optional = true }18cranelift-jit = { workspace = true, optional = true }19cranelift-module = { workspace = true, optional = true }20cranelift-native = { workspace = true, optional = true }21cranelift-object = { workspace = true, optional = true }2223[features]24default = ["std", "frontend"]25frontend = ["dep:cranelift-frontend"]26interpreter = ["dep:cranelift-interpreter"]27jit = ["dep:cranelift-jit"]28module = ["dep:cranelift-module"]29native = ["dep:cranelift-native"]30object = ["dep:cranelift-object"]31std = [32"cranelift-codegen/std",33"cranelift-frontend?/std",34"cranelift-module?/std",35]36core = [37"cranelift-codegen/core",38"cranelift-frontend?/core",39"cranelift-module?/core",40]414243