1
0
mirror of https://github.com/bspeice/aeron-rs synced 2025-07-02 22:34:53 -04:00

Attempt to remove sh.exe from PATH

This commit is contained in:
2020-01-12 18:37:15 -05:00
parent 56fc28dc47
commit 437e3f9d05
2 changed files with 6 additions and 2 deletions

View File

@ -99,6 +99,9 @@ pub fn main() {
.whitelist_type("aeron_.*")
.whitelist_var("AERON_.*")
.constified_enum_module("aeron_.*_enum")
// Some padding structures use arrays > 120 elements,
// so we can't derive Debug implementations
.derive_debug(false)
.generate()
.expect("Unable to generate aeron_driver bindings");