Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/explorer/Cargo.toml
3068 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
capstone = { workspace = true }
17
serde = { workspace = true }
18
serde_derive = { workspace = true }
19
serde_json = { workspace = true }
20
target-lexicon = { workspace = true, features = ['std'] }
21
wasmprinter = { workspace = true }
22
wasmtime = { workspace = true, features = ["anyhow", "cranelift", "runtime"] }
23
wasmtime-environ = { workspace = true, features = ["anyhow"] }
24
25