aboutsummaryrefslogtreecommitdiffstats
path: root/components/channel/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/channel/lib.rs')
-rw-r--r--components/channel/lib.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/components/channel/lib.rs b/components/channel/lib.rs
index fd8dc7e5824..3e286ef7f98 100644
--- a/components/channel/lib.rs
+++ b/components/channel/lib.rs
@@ -2,16 +2,13 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-extern crate crossbeam_channel;
-extern crate ipc_channel;
-extern crate serde;
-
pub mod base_channel {
pub use crossbeam_channel::*;
}
// Needed to re-export the select macro.
pub use crossbeam_channel::*;
+use crossbeam_channel;
use ipc_channel::ipc::IpcReceiver;
use ipc_channel::router::ROUTER;
use serde::{Deserialize, Serialize};