summary refs log tree commit diff
path: root/resources
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2020-04-11 19:48:44 +0000
committerAlyssa Ross <hi@alyssa.is>2020-04-11 19:55:52 +0000
commit00c41c28bbc44b37fc8dcf5d2a5b4679f2aa4297 (patch)
tree131061309a0466bff409959095b45c4099eb6123 /resources
parentb1a657f905422a33447342944761f48632022faf (diff)
downloadcrosvm-00c41c28bbc44b37fc8dcf5d2a5b4679f2aa4297.tar
crosvm-00c41c28bbc44b37fc8dcf5d2a5b4679f2aa4297.tar.gz
crosvm-00c41c28bbc44b37fc8dcf5d2a5b4679f2aa4297.tar.bz2
crosvm-00c41c28bbc44b37fc8dcf5d2a5b4679f2aa4297.tar.lz
crosvm-00c41c28bbc44b37fc8dcf5d2a5b4679f2aa4297.tar.xz
crosvm-00c41c28bbc44b37fc8dcf5d2a5b4679f2aa4297.tar.zst
crosvm-00c41c28bbc44b37fc8dcf5d2a5b4679f2aa4297.zip
Remove unnecessary "extern crate" lines
The proc_macro ones have been unnecessary since Rust 1.42, and the
rest have been unnecessary since the 2018 edition.
Diffstat (limited to 'resources')
-rw-r--r--resources/src/lib.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/resources/src/lib.rs b/resources/src/lib.rs
index a0c6c98..a6beceb 100644
--- a/resources/src/lib.rs
+++ b/resources/src/lib.rs
@@ -4,12 +4,6 @@
 
 //! Manages system resources that can be allocated to VMs and their devices.
 
-#[cfg(feature = "wl-dmabuf")]
-extern crate gpu_buffer;
-extern crate libc;
-extern crate msg_socket;
-extern crate sys_util;
-
 use msg_socket::MsgOnSocket;
 use std::fmt::Display;