1[package] 2name = "cranelift-tools" 3authors = ["The Cranelift Project Developers"] 4version = "0.64.0" 5description = "Binaries for testing the Cranelift libraries" 6license = "Apache-2.0 WITH LLVM-exception" 7documentation = "https://github.com/bytecodealliance/wasmtime/blob/master/cranelift/docs/index.md" 8repository = "https://github.com/bytecodealliance/wasmtime" 9publish = false 10edition = "2018" 11 12[[bin]] 13name = "clif-util" 14path = "src/clif-util.rs" 15 16[dependencies] 17cfg-if = "0.1" 18cranelift-codegen = { path = "codegen", version = "0.64.0" } 19cranelift-entity = { path = "entity", version = "0.64.0" } 20cranelift-interpreter = { path = "interpreter", version = "0.64.0" } 21cranelift-reader = { path = "reader", version = "0.64.0" } 22cranelift-frontend = { path = "frontend", version = "0.64.0" } 23cranelift-serde = { path = "serde", version = "0.64.0", optional = true } 24cranelift-wasm = { path = "wasm", version = "0.64.0", optional = true } 25cranelift-native = { path = "native", version = "0.64.0" } 26cranelift-filetests = { path = "filetests", version = "0.64.0" } 27cranelift-module = { path = "module", version = "0.64.0" } 28cranelift-faerie = { path = "faerie", version = "0.64.0" } 29cranelift-object = { path = "object", version = "0.64.0" } 30cranelift-simplejit = { path = "simplejit", version = "0.64.0" } 31cranelift-preopt = { path = "preopt", version = "0.64.0" } 32cranelift = { path = "umbrella", version = "0.64.0" } 33filecheck = "0.5.0" 34clap = "2.32.0" 35log = "0.4.8" 36serde = "1.0.8" 37term = "0.6.1" 38capstone = { version = "0.6.0", optional = true } 39wat = { version = "1.0.18", optional = true } 40target-lexicon = "0.10" 41pretty_env_logger = "0.4.0" 42file-per-thread-logger = "0.1.2" 43indicatif = "0.13.0" 44thiserror = "1.0.15" 45walkdir = "2.2" 46 47[features] 48default = ["disas", "wasm", "cranelift-codegen/all-arch"] 49disas = ["capstone"] 50enable-peepmatic = ["cranelift-codegen/enable-peepmatic", "cranelift-filetests/enable-peepmatic"] 51wasm = ["wat", "cranelift-wasm"] 52