[package]
edition = "2021"
name = "wasmtime-jit-debug"
version = "24.0.6"
authors = ["The Wasmtime Project Developers"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "JIT debug interfaces support for Wasmtime"
readme = "README.md"
keywords = [
"gdb",
"jit",
]
categories = ["development-tools::debugging"]
license = "Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/bytecodealliance/wasmtime"
[features]
gdb_jit_int = ["once_cell"]
perf_jitdump = [
"rustix",
"object",
]
[lib]
name = "wasmtime_jit_debug"
path = "src/lib.rs"
[dependencies.object]
version = "0.36"
features = [
"read_core",
"elf",
]
optional = true
default-features = false
[dependencies.once_cell]
version = "1.12.0"
optional = true
default-features = false
[dependencies.wasmtime-versioned-export-macros]
version = "=24.0.6"
[target.'cfg(target_os = "linux")'.dependencies.rustix]
version = "0.38.31"
features = [
"mm",
"param",
"time",
]
optional = true
[lints.clippy]
clone_on_copy = "warn"
manual_strip = "warn"
map_clone = "warn"
unnecessary_to_owned = "warn"
[lints.clippy.all]
level = "allow"
priority = -1
[lints.rust]
trivial_numeric_casts = "warn"
unstable_features = "warn"
unused-lifetimes = "warn"
unused_extern_crates = "warn"
unused_import_braces = "warn"