aboutsummaryrefslogtreecommitdiff
path: root/patches/series
Commit message (Collapse)AuthorAge
* Remove unnecessary __uint*_t typedefsRobin Krahl2020-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.rsRobin Krahl2020-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.