From f5b40c918c7d602827622d167728a3e7bae87d9d Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Mon, 14 Sep 2020 18:48:57 +0200 Subject: refactor: use the 'anyhow' crate instead of 'ErrBox' (#7476) --- core/lib.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'core/lib.rs') diff --git a/core/lib.rs b/core/lib.rs index bb54f5133..ba7fdcd21 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -9,7 +9,7 @@ extern crate lazy_static; extern crate log; mod bindings; -mod errors; +pub mod error; mod flags; mod gotham_state; mod module_specifier; @@ -24,9 +24,6 @@ mod zero_copy_buf; pub use rusty_v8 as v8; -pub use crate::errors::AnyError; -pub use crate::errors::ErrBox; -pub use crate::errors::JsError; pub use crate::flags::v8_set_flags; pub use crate::module_specifier::ModuleResolutionError; pub use crate::module_specifier::ModuleSpecifier; -- cgit v1.2.3