diff options
Diffstat (limited to 'core/lib.rs')
-rw-r--r-- | core/lib.rs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/core/lib.rs b/core/lib.rs index 9387d0cab..c4fbb33f4 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -1,14 +1,12 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. #[macro_use] -extern crate log; -extern crate futures; -extern crate libc; -#[macro_use] extern crate downcast_rs; -extern crate rusty_v8; +extern crate futures; #[macro_use] extern crate lazy_static; +#[macro_use] +extern crate log; mod any_error; mod bindings; |