1[package] 2name = "wasmtime-internal-explorer" 3authors.workspace = true 4description = "INTERNAL: Compiler explorer for Wasmtime and Cranelift" 5documentation = "https://docs.rs/wasmtime-explorer/" 6edition.workspace = true 7rust-version.workspace = true 8license = "Apache-2.0 WITH LLVM-exception" 9repository = "https://github.com/bytecodealliance/wasmtime" 10version.workspace = true 11 12[lints] 13workspace = true 14 15[dependencies] 16capstone = { workspace = true } 17serde = { workspace = true } 18serde_derive = { workspace = true } 19serde_json = { workspace = true } 20target-lexicon = { workspace = true, features = ['std'] } 21wasmprinter = { workspace = true } 22wasmtime = { workspace = true, features = ["anyhow", "cranelift", "runtime"] } 23wasmtime-environ = { workspace = true, features = ["anyhow"] } 24