Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anfedotoff/libunwind-rs
https://github.com/anfedotoff/libunwind-rs
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/anfedotoff/libunwind-rs
- Owner: anfedotoff
- License: mit
- Created: 2020-02-12T13:19:59.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-02-01T15:13:20.000Z (almost 4 years ago)
- Last Synced: 2024-10-31T11:45:17.720Z (3 months ago)
- Language: Rust
- Size: 832 KB
- Stars: 2
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![crates.io](https://img.shields.io/crates/v/libunwind-rs.svg)](https://crates.io/crates/libunwind-rs)
# libunwind-rs
This crate provides high-level bindings for the [libunwind] library.Supported targets:
* x86_64-unknown-linux-gnu;
* i686-unknown-linux-gnu;
* i586-unknown-linux-gnu;
* arm-unknown-linux-gnueabihf;
* x86_64-unknown-linux-musl.Tests are provided only for x86_64 target.
[libunwind]: https://www.nongnu.org/libunwind/
## Installation
First, compile `libunwind` as a shared library and install it. Add this crate to your `Cargo.toml`:
```toml
[dependencies]
libunwind-rs = "0.3.1"
```
## LicenseThis crate is licensed under the [MIT license].
[MIT license]: LICENSE