aboutsummaryrefslogtreecommitdiff
path: root/matroska/src/block.rs
diff options
context:
space:
mode:
Diffstat (limited to 'matroska/src/block.rs')
-rw-r--r--matroska/src/block.rs8
1 files changed, 5 insertions, 3 deletions
diff --git a/matroska/src/block.rs b/matroska/src/block.rs
index 1ab8ceb..6cf9891 100644
--- a/matroska/src/block.rs
+++ b/matroska/src/block.rs
@@ -3,9 +3,11 @@
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
Copyright (C) 2024 metamuffin <metamuffin.org>
*/
-use crate::write::vint_length;
-use crate::{read::ReadExt, write::write_vint};
-use crate::{ReadValue, Result, WriteValue};
+use crate::{
+ read::ReadExt,
+ write::{vint_length, write_vint},
+ ReadValue, Result, WriteValue,
+};
use std::io::{Cursor, Write};
#[derive(Debug, PartialEq, Clone, Copy)]