1[package]
2name = "wasmtime-internal-jit-debug"
3version.workspace = true
4authors.workspace = true
5description = "INTERNAL: JIT debug interfaces support for Wasmtime"
6license = "Apache-2.0 WITH LLVM-exception"
7categories = ["development-tools::debugging"]
8keywords = ["gdb", "jit"]
9repository = "https://github.com/bytecodealliance/wasmtime"
10readme = "README.md"
11edition.workspace = true
12rust-version.workspace = true
13
14[lints]
15workspace = true
16
17[build-dependencies]
18cc = { workspace = true }
19wasmtime-versioned-export-macros = { workspace = true }
20
21[dependencies]
22object = { workspace = true, optional = true }
23wasmtime-versioned-export-macros = { workspace = true }
24
25[target.'cfg(target_os = "linux")'.dependencies]
26rustix = { workspace = true, features = ["mm", "time"], optional = true }
27
28[features]
29std = []
30gdb_jit_int = []
31perf_jitdump = ["rustix", "object", "std"]
32