| Crates.io | rtsan-standalone-sys |
| lib.rs | rtsan-standalone-sys |
| version | 0.2.0 |
| created_at | 2025-01-20 13:44:36.058717+00 |
| updated_at | 2025-05-17 10:23:59.885324+00 |
| description | Unsafe Rust bindings for RTSan standalone library |
| homepage | |
| repository | https://github.com/realtime-sanitizer/rtsan-standalone-rs |
| max_upload_size | |
| id | 1523901 |
| size | 27,112 |
Unsafe Rust bindings for the RTSan standalone library.
Currently this crate only works on Linux and macOS.
The Rust bindings are generated from the original C++ header file for the RTSan
standalone library. The header file is available at the following link:
RTSan Standalone Header
To generate the bindings, use the following command:
bindgen rtsan_standalone.h -o rtsan_standalone.rs
You can install bindgen via cargo using the following command:
cargo install bindgen-cli