1[package] 2name = "cranelift-object" 3version = "0.131.1" 4authors = ["The Cranelift Project Developers"] 5description = "Emit Cranelift output to native object files with `object`" 6repository = "https://github.com/bytecodealliance/wasmtime" 7documentation = "https://docs.rs/cranelift-object" 8license = "Apache-2.0 WITH LLVM-exception" 9readme = "README.md" 10edition.workspace = true 11rust-version.workspace = true 12 13[lints] 14workspace = true 15 16[dependencies] 17cranelift-module = { workspace = true } 18cranelift-codegen = { workspace = true, features = ["std"] } 19cranelift-control = { workspace = true } 20object = { workspace = true, features = ["write", "std"] } 21target-lexicon = { workspace = true } 22anyhow = { workspace = true } 23log = { workspace = true } 24 25[dev-dependencies] 26cranelift-frontend = { workspace = true } 27cranelift-entity = { workspace = true } 28cranelift-codegen = { workspace = true, features = ["x86", "arm64"] } 29