libunwind 1.3.2

Rust bindings to the libunwind C library
Documentation
1
2
3
4
5
6
7
8
9
10
11
# libunwind
This library provides Rust bindings to the libunwind C library.

To use this library, you may have to modify your `Cargo.toml` file for cargo to link libunwind with your project:

```TOML
# other parts of Cargo.toml ...

[build]
rustflags = ["-C", "link-args=-lunwind"]
```