Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Remove unnecessary __uint*_t typedefs | Robin Krahl | 2020-09-20 |
| | | | | | | | | While bindgen is able to replace the C uint types with the correct Rust types, it still generates typedefs for __uint{8,16,32,64}_t [0]. We don’t need these typedefs, so we add a patch to remove them. [0] https://github.com/rust-lang/rust-bindgen/issues/1663 | ||
* | Use quilt to manage modifications in src/ffi.rs | Robin Krahl | 2020-09-20 |
Previously, we manually modified the src/ffi.rs file to add deprecation attributes. With this patch, we use quilt to automatically apply patches with the changes. |