From 48b57517520e8a544d0515e3d476442b57c9ecd7 Mon Sep 17 00:00:00 2001 From: Zhiming Wang Date: Mon, 10 Aug 2020 21:57:55 +0800 Subject: [PATCH] lib: export util::log --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 9aae3c6..ca137a5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -23,6 +23,7 @@ pub use util::dictionary::Owned as Dictionary; pub use util::dictionary::Ref as DictionaryRef; pub use util::error::{self, Error}; pub use util::frame::{self, Frame}; +pub use util::log; pub use util::mathematics::{self, rescale, Rescale, Rounding}; pub use util::media; pub use util::option;