diff options
author | Zbynek Winkler <zbynek.winkler@gmail.com> | 2016-04-20 09:25:50 +0200 |
---|---|---|
committer | Zbynek Winkler <zbynek.winkler@gmail.com> | 2016-04-22 22:20:05 +0200 |
commit | b021874ba08f1d207e70ddaf32b374c9533e29f0 (patch) | |
tree | c674acfdc95cf267f4861fc7a0a03b7edc4f83da /components/msg/lib.rs | |
parent | a7c885706ec4bd526b00ecad5d870415ae6cc1e1 (diff) | |
download | servo-b021874ba08f1d207e70ddaf32b374c9533e29f0.tar.gz servo-b021874ba08f1d207e70ddaf32b374c9533e29f0.zip |
Silence unused-extern-crates false positives.
Added #[allow(unused_extern_crates)] to silence false positives
* bitflags, lazy_static and matches because macro_use
* alloc_jemalloc because builtin crate
See https://github.com/rust-lang/rust/issues/30849
Diffstat (limited to 'components/msg/lib.rs')
-rw-r--r-- | components/msg/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/msg/lib.rs b/components/msg/lib.rs index 0f2a16228a1..bd97c3a33da 100644 --- a/components/msg/lib.rs +++ b/components/msg/lib.rs @@ -7,6 +7,7 @@ #![deny(unsafe_code)] +#[allow(unused_extern_crates)] #[macro_use] extern crate bitflags; extern crate euclid; |