Skip to content

Commit 0ed7e58

Browse files
committed
Silence bare_trait_objects warnings in the script crate
There are many of them, and rustfix is broken: rust-lang/rust#61963
1 parent 1030f91 commit 0ed7e58

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

components/script/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#![feature(type_alias_enum_variants)]
1212
#![deny(unsafe_code)]
1313
#![allow(non_snake_case)]
14+
#![allow(bare_trait_objects)] // https://github.com/rust-lang/rust/issues/61963
1415
#![doc = "The script crate contains all matters DOM."]
1516
#![plugin(script_plugins)]
1617
#![cfg_attr(not(feature = "unrooted_must_root_lint"), allow(unknown_lints))]

0 commit comments

Comments
 (0)