1[package] 2authors = ["The Cranelift Project Developers"] 3name = "cranelift-reader" 4version = "0.130.0" 5description = "Cranelift textual IR reader" 6license = "Apache-2.0 WITH LLVM-exception" 7documentation = "https://docs.rs/cranelift-reader" 8repository = "https://github.com/bytecodealliance/wasmtime" 9readme = "README.md" 10edition.workspace = true 11rust-version.workspace = true 12 13[lints] 14workspace = true 15 16[dependencies] 17anyhow = { workspace = true, features = ['std'] } 18cranelift-codegen = { workspace = true } 19smallvec = { workspace = true } 20target-lexicon = { workspace = true, features = ['std'] } 21 22[dev-dependencies] 23# Some tests require that the x86_64 target parses for the target specification. 24cranelift-codegen = { workspace = true, features = ['x86'] } 25