* Cargo.lock: Update, to no longer use multiple versions of autocfg * Update wasmtime-debug and wasmtime-profiling to current gimli 0.20.0 This also eliminates duplicate versions of gimli and arrayvec, and eliminates the nodrop dependency entirely. * Update wasmtime-profiling to goblin 0.1.3 and object 0.17.0 This also eliminates two duplicate versions of goblin, and duplicate versions of proc-macro2, quote, syn, scroll_derive, and unicode-xid. * Update wasmtime-profiling to current scroll 0.10.1 This eliminates duplicate versions of scroll. * Update wasmtime-profiling to current target-lexicon 0.10.0 This eliminates duplicate versions of target-lexicon. * Update wasmtime-interface-types to current walrus and wasm-webidl-bindings This also eliminates the oldest of the three duplicate versions of wasmparser. * Update wasmtime-wast to current wast 8.0.0 This eliminates one of the duplicate versions of wast.
26 lines
739 B
TOML
26 lines
739 B
TOML
[package]
|
|
name = "wasmtime-debug"
|
|
version = "0.9.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/bytecodealliance/wasmtime"
|
|
documentation = "https://docs.rs/wasmtime-debug/"
|
|
categories = ["wasm"]
|
|
keywords = ["webassembly", "wasm", "debuginfo"]
|
|
readme = "README.md"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
gimli = "0.20.0"
|
|
wasmparser = "0.51.0"
|
|
faerie = "0.14.0"
|
|
wasmtime-environ = { path = "../environ", version = "0.9.0" }
|
|
target-lexicon = { version = "0.10.0", default-features = false }
|
|
anyhow = "1.0"
|
|
thiserror = "1.0.4"
|
|
more-asserts = "0.2.1"
|
|
|
|
[badges]
|
|
maintenance = { status = "actively-developed" }
|