diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2017-06-16 13:58:21 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2017-06-16 13:58:21 +0200 |
commit | 605ef8b7ecd31aead8c29dcc034bcf1e4f3c73c7 (patch) | |
tree | 6896ae8b01e5d3dd26c97c11950fcd61acd4b883 /components/webvr_traits/lib.rs | |
parent | 76d8573393b9e31739b633a6a4b2b77efbf12abf (diff) | |
download | servo-605ef8b7ecd31aead8c29dcc034bcf1e4f3c73c7.tar.gz servo-605ef8b7ecd31aead8c29dcc034bcf1e4f3c73c7.zip |
Remove explicit dependencies on serde_derive
Diffstat (limited to 'components/webvr_traits/lib.rs')
-rw-r--r-- | components/webvr_traits/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/components/webvr_traits/lib.rs b/components/webvr_traits/lib.rs index 55c3057fcb7..5773ce1e644 100644 --- a/components/webvr_traits/lib.rs +++ b/components/webvr_traits/lib.rs @@ -6,8 +6,7 @@ extern crate ipc_channel; extern crate msg; -#[macro_use] -extern crate serde_derive; +#[macro_use] extern crate serde; pub extern crate rust_webvr as webvr; mod webvr_traits; |