diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2020-05-31 15:14:16 +0200 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2020-05-31 15:18:57 +0200 |
commit | a0ddfb3d1ef6509bfd5cc957187f98d01c806bd8 (patch) | |
tree | a0a0ae3b289c50ca28925989fa3d7f92fadf73a2 /nihav-core/src/lib.rs | |
parent | dab59886687a0c360a38743b9dc210e8ba269729 (diff) | |
download | nihav-a0ddfb3d1ef6509bfd5cc957187f98d01c806bd8.tar.gz |
core: split options into separate module
Diffstat (limited to 'nihav-core/src/lib.rs')
-rw-r--r-- | nihav-core/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nihav-core/src/lib.rs b/nihav-core/src/lib.rs index c98956d..303fb24 100644 --- a/nihav-core/src/lib.rs +++ b/nihav-core/src/lib.rs @@ -20,6 +20,7 @@ pub mod formats; pub mod frame; #[allow(clippy::too_many_arguments)] pub mod io; +pub mod options; pub mod refs; pub mod reorder; pub mod scale; |