rust: allow static_mut_refs for now

But we should fix all these soon.
pull/12185/head
Jason Ish 3 months ago committed by Victor Julien
parent aa6e94fc73
commit 4c12165816

@ -53,6 +53,13 @@
// cf https://github.com/mozilla/cbindgen/issues/709
#![allow(unused_doc_comments)]
// Allow unknown lints, our MSRV doesn't know them all, for
// example static_mut_refs.
#![allow(unknown_lints)]
// Allow for now, but need to be fixed.
#![allow(static_mut_refs)]
#[macro_use]
extern crate bitflags;
extern crate byteorder;

Loading…
Cancel
Save