From 1849a07aa69332753f65ab5a0b7873f92fa00751 Mon Sep 17 00:00:00 2001 From: Zhiming Wang Date: Sun, 9 Aug 2020 13:58:24 +0800 Subject: [PATCH] lib: export util::error --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 73bdeda..9aae3c6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -21,7 +21,7 @@ pub use util::dictionary; pub use util::dictionary::Mut as DictionaryMut; pub use util::dictionary::Owned as Dictionary; pub use util::dictionary::Ref as DictionaryRef; -pub use util::error::Error; +pub use util::error::{self, Error}; pub use util::frame::{self, Frame}; pub use util::mathematics::{self, rescale, Rescale, Rounding}; pub use util::media;