[package]
edition = "2024"
rust-version = "1.90.0"
name = "wasmtime-internal-jit-debug"
version = "41.0.2"
authors = ["The Wasmtime Project Developers"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "INTERNAL: 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"
resolver = "2"
[features]
gdb_jit_int = []
perf_jitdump = [
"rustix",
"object",
"std",
]
std = []
[lib]
name = "wasmtime_internal_jit_debug"
path = "src/lib.rs"
[dependencies.object]
version = "0.37.3"
features = [
"read_core",
"elf",
]
optional = true
default-features = false
[dependencies.wasmtime-versioned-export-macros]
version = "=41.0.2"
package = "wasmtime-internal-versioned-export-macros"
[build-dependencies.cc]
version = "1.2.41"
[build-dependencies.wasmtime-versioned-export-macros]
version = "=41.0.2"
package = "wasmtime-internal-versioned-export-macros"
[target.'cfg(target_os = "linux")'.dependencies.rustix]
version = "1.0.8"
features = [
"mm",
"time",
]
optional = true
[lints.clippy]
allow_attributes_without_reason = "warn"
clone_on_copy = "warn"
extra_unused_type_parameters = "warn"
from_over_into = "warn"
manual_strip = "warn"
map_clone = "warn"
multiple_bound_locations = "warn"
redundant_field_names = "warn"
uninlined_format_args = "warn"
unnecessary_cast = "warn"
unnecessary_fallible_conversions = "warn"
unnecessary_mut_passed = "warn"
unnecessary_to_owned = "warn"
useless_conversion = "warn"
[lints.clippy.all]
level = "allow"
priority = -1
[lints.rust]
trivial_numeric_casts = "warn"
unstable_features = "warn"
unused-lifetimes = "warn"
unused-macro-rules = "warn"
unused_extern_crates = "warn"
unused_import_braces = "warn"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(pulley_tail_calls)",
"cfg(pulley_assume_llvm_makes_tail_calls)",
"cfg(pulley_disable_interp_simd)",
]