Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/explorer/Cargo.toml
1690 views
1
[package]
2
name = "wasmtime-internal-explorer"
3
authors.workspace = true
4
description = "INTERNAL: Compiler explorer for Wasmtime and Cranelift"
5
documentation = "https://docs.rs/wasmtime-explorer/"
6
edition.workspace = true
7
rust-version.workspace = true
8
license = "Apache-2.0 WITH LLVM-exception"
9
repository = "https://github.com/bytecodealliance/wasmtime"
10
version.workspace = true
11
12
[lints]
13
workspace = true
14
15
[dependencies]
16
anyhow = { workspace = true }
17
capstone = { workspace = true }
18
serde = { workspace = true }
19
serde_derive = { workspace = true }
20
serde_json = { workspace = true }
21
target-lexicon = { workspace = true, features = ['std'] }
22
wasmprinter = { workspace = true }
23
wasmtime = { workspace = true, features = ["cranelift", "runtime"] }
24
wasmtime-environ = { workspace = true }
25
26