diff options
author | Bobby Holley <bobbyholley@gmail.com> | 2017-07-11 15:56:15 -0700 |
---|---|---|
committer | Bobby Holley <bobbyholley@gmail.com> | 2017-07-12 16:37:50 -0700 |
commit | d1c31f7eafed2708354423852642c3dd8efe077a (patch) | |
tree | 5f5f6fc1c3613deb85be265b98bbecd4d5a84c9f /components/servo_arc/lib.rs | |
parent | 55c3e6ed87405f7bcdddcd623ecb1a932f4f8a43 (diff) | |
download | servo-d1c31f7eafed2708354423852642c3dd8efe077a.tar.gz servo-d1c31f7eafed2708354423852642c3dd8efe077a.zip |
Add owning_ref back as a style dep, and update parking_lot.
Diffstat (limited to 'components/servo_arc/lib.rs')
-rw-r--r-- | components/servo_arc/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/servo_arc/lib.rs b/components/servo_arc/lib.rs index 0040fdea6d1..5dc261eefb6 100644 --- a/components/servo_arc/lib.rs +++ b/components/servo_arc/lib.rs @@ -22,8 +22,9 @@ // duplicate those here. #![allow(missing_docs)] -#[cfg(feature = "servo")] extern crate serde; extern crate nodrop; +#[cfg(feature = "servo")] extern crate serde; +extern crate stable_deref_trait; #[cfg(feature = "servo")] use heapsize::HeapSizeOf; |