diff options
author | Alan Jeffrey <ajeffrey@mozilla.com> | 2016-07-11 14:09:54 -0500 |
---|---|---|
committer | Alan Jeffrey <ajeffrey@mozilla.com> | 2016-07-20 21:56:43 -0500 |
commit | c889900cff2cde40d21fa27810b9c4b0b57c390a (patch) | |
tree | 5b2988473f32ebefa4af1c73f4e417fb99a51c0f /components/util/lib.rs | |
parent | b34b30fd96e29f9c3773c9146c78e3d47fdc156d (diff) | |
download | servo-c889900cff2cde40d21fa27810b9c4b0b57c390a.tar.gz servo-c889900cff2cde40d21fa27810b9c4b0b57c390a.zip |
Removed panic channel, replaced by integrated logging and issue reporting.
Diffstat (limited to 'components/util/lib.rs')
-rw-r--r-- | components/util/lib.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/components/util/lib.rs b/components/util/lib.rs index 6b906f83c8d..c36ec47a4cb 100644 --- a/components/util/lib.rs +++ b/components/util/lib.rs @@ -3,7 +3,6 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #![cfg_attr(feature = "servo", feature(custom_derive))] -#![cfg_attr(feature = "servo", feature(fnbox))] #![cfg_attr(feature = "servo", feature(plugin))] #![cfg_attr(feature = "servo", feature(reflect_marker))] #![cfg_attr(feature = "servo", plugin(serde_macros))] @@ -12,7 +11,6 @@ #![deny(unsafe_code)] extern crate app_units; -#[cfg(feature = "servo")] extern crate backtrace; #[allow(unused_extern_crates)] #[macro_use] extern crate bitflags; extern crate euclid; extern crate getopts; @@ -31,7 +29,6 @@ pub mod basedir; pub mod geometry; #[cfg(feature = "servo")] #[allow(unsafe_code)] pub mod ipc; #[allow(unsafe_code)] pub mod opts; -#[cfg(feature = "servo")] pub mod panicking; pub mod prefs; pub mod resource_files; pub mod thread; |