Several of these badges were out of date, with some crates in wide production use marked as "experimental". Insted of trying to keep them up to date, just remove them, since they are [no longer displayed on crates.io]. [no longer displayed on crates.io]: https://doc.rust-lang.org/cargo/reference/manifest.html#the-badges-section
23 lines
689 B
TOML
23 lines
689 B
TOML
[package]
|
|
name = "wasmtime-jit-debug"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
description = "JIT debug interfaces support for Wasmtime"
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
categories = ["development-tools::debugging"]
|
|
keywords = ["gdb", "jit"]
|
|
repository = "https://github.com/bytecodealliance/wasmtime"
|
|
readme = "README.md"
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
once_cell = { workspace = true, optional = true }
|
|
object = { workspace = true, optional = true }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
rustix = { workspace = true, features = ["mm", "param", "time"], optional = true }
|
|
|
|
[features]
|
|
gdb_jit_int = ["once_cell"]
|
|
perf_jitdump = ["rustix", "object"]
|