From 7cd09a53dfb92395276eef6d119c2e995e566629 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20R=C3=B6nnberg?= Date: Sat, 19 May 2018 23:44:53 +0200 Subject: [PATCH] Disable rustfmt on the bindings, as it can occasionally cause build breakage --- build.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/build.rs b/build.rs index d68a2cd..de1183b 100644 --- a/build.rs +++ b/build.rs @@ -137,6 +137,7 @@ fn build(frameworks_path: &str) { let bindings = builder .trust_clang_mangling(false) .derive_default(true) + .rustfmt_bindings(false) .generate() .expect("unable to generate bindings");