Skip to content

Commit

Permalink
Silence bare_trait_objects warnings in the script crate
Browse files Browse the repository at this point in the history
There are many of them, and rustfix is broken:
rust-lang/rust#61963
  • Loading branch information
SimonSapin committed Jun 19, 2019
1 parent 1030f91 commit 0ed7e58
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions components/script/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#![feature(type_alias_enum_variants)]
#![deny(unsafe_code)]
#![allow(non_snake_case)]
#![allow(bare_trait_objects)] // https://github.com/rust-lang/rust/issues/61963
#![doc = "The script crate contains all matters DOM."]
#![plugin(script_plugins)]
#![cfg_attr(not(feature = "unrooted_must_root_lint"), allow(unknown_lints))]
Expand Down

0 comments on commit 0ed7e58

Please sign in to comment.