aboutsummaryrefslogtreecommitdiff
path: root/matroska/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'matroska/src/lib.rs')
-rw-r--r--matroska/src/lib.rs27
1 files changed, 0 insertions, 27 deletions
diff --git a/matroska/src/lib.rs b/matroska/src/lib.rs
deleted file mode 100644
index 1098ca6..0000000
--- a/matroska/src/lib.rs
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- This file is part of jellything (https://codeberg.org/metamuffin/jellything)
- which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
- Copyright (C) 2025 metamuffin <metamuffin.org>
-*/
-pub mod block;
-pub mod error;
-pub mod matroska;
-pub mod read;
-pub mod size;
-pub mod unflatten;
-pub mod write;
-
-pub use matroska::MatroskaTag;
-pub use read::ReadValue;
-pub use write::WriteValue;
-
-#[derive(Debug, Clone, PartialEq)]
-pub enum Master {
- Collected(Vec<MatroskaTag>),
- Start,
- End,
-}
-
-pub(crate) use block::Block;
-pub(crate) use error::Error;
-pub(crate) type Result<T> = core::result::Result<T, Error>;