Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/unwinder/Cargo.toml
1690 views
1
[package]
2
name = "wasmtime-internal-unwinder"
3
authors.workspace = true
4
version.workspace = true
5
description = "INTERNAL: Wasmtime's unwind format and unwinder"
6
license = "Apache-2.0 WITH LLVM-exception"
7
documentation = "https://docs.rs/wasmtime-unwinder"
8
repository = "https://github.com/bytecodealliance/wasmtime"
9
categories = ["no-std"]
10
readme = "README.md"
11
keywords = ["unwind", "exceptions"]
12
edition.workspace = true
13
rust-version.workspace = true
14
15
[lints]
16
workspace = true
17
18
[dependencies]
19
cranelift-codegen = { workspace = true, optional = true }
20
log = { workspace = true }
21
cfg-if = { workspace = true }
22
object = { workspace = true }
23
anyhow = { workspace = true }
24
25
[features]
26
default = []
27
28
# Enable generation of unwind info from Cranelift metadata.
29
cranelift = ["dep:cranelift-codegen"]
30
31