diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2019-01-20 18:53:23 +0100 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2019-01-20 18:53:23 +0100 |
commit | 4e8b4f31bc2ef2b22b4c725aa07dfc776664a97b (patch) | |
tree | a439fc46c31111459b53871374009f3094f1dfb3 /nihav-core/src/frame.rs | |
parent | 11a46b93be48216b494cbafc4c0455e3317df733 (diff) | |
download | nihav-4e8b4f31bc2ef2b22b4c725aa07dfc776664a97b.tar.gz |
re-export some core dependencies
Diffstat (limited to 'nihav-core/src/frame.rs')
-rw-r--r-- | nihav-core/src/frame.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nihav-core/src/frame.rs b/nihav-core/src/frame.rs index 2bfbe61..9756dfb 100644 --- a/nihav-core/src/frame.rs +++ b/nihav-core/src/frame.rs @@ -1,9 +1,9 @@ use std::cmp::max; use std::collections::HashMap; use std::fmt; -use std::rc::Rc; -use std::cell::*; -use crate::formats::*; +pub use std::rc::Rc; +pub use std::cell::*; +pub use crate::formats::*; #[allow(dead_code)] #[derive(Clone,Copy,PartialEq)] |