diff options
author | Bert Belder <bertbelder@gmail.com> | 2020-03-02 14:20:16 -0800 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2020-03-02 14:20:16 -0800 |
commit | eafd40feabaf14f9f88748c66fa319519fd69072 (patch) | |
tree | ccb3a5848fec4bc013aad774fc9c9bda2f894043 /core/lib.rs | |
parent | 3fcbf8789e7f873f8a562b200ab82ea7cec173d8 (diff) |
Do not convert exceptions to JSON and back (#4214)
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; |