|
|
|
[package]
|
|
|
|
name = "wasmtime-debug"
|
|
|
|
version = "0.2.0"
|
|
|
|
authors = ["The Wasmtime Project Developers"]
|
|
|
|
description = "Debug utils for WebAsssembly code in Cranelift"
|
|
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
|
|
repository = "https://github.com/CraneStation/wasmtime"
|
|
|
|
documentation = "https://docs.rs/wasmtime-debug/"
|
|
|
|
categories = ["wasm"]
|
|
|
|
keywords = ["webassembly", "wasm", "debuginfo"]
|
|
|
|
readme = "README.md"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
gimli = "0.19.0"
|
|
|
|
wasmparser = "0.39.2"
|
|
|
|
cranelift-codegen = { version = "0.49", features = ["enable-serde"] }
|
|
|
|
cranelift-entity = { version = "0.49", features = ["enable-serde"] }
|
|
|
|
cranelift-wasm = { version = "0.49", features = ["enable-serde"] }
|
|
|
|
faerie = "0.12.0"
|
|
|
|
wasmtime-environ = { path = "../environ", default-features = false }
|
|
|
|
target-lexicon = { version = "0.9.0", default-features = false }
|
|
|
|
failure = { version = "0.1.3", default-features = false }
|
|
|
|
hashbrown = { version = "0.6.0", optional = true }
|
|
|
|
thiserror = "1.0.4"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["std"]
|
|
|
|
std = ["cranelift-codegen/std", "cranelift-wasm/std", "wasmtime-environ/std"]
|
|
|
|
core = ["hashbrown/nightly", "cranelift-codegen/core", "cranelift-wasm/core"]
|
|
|
|
|
|
|
|
[badges]
|
|
|
|
maintenance = { status = "actively-developed" }
|