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