From d3942a512cb5e905b7e237d61deff53b164a9a55 Mon Sep 17 00:00:00 2001 From: lily Date: Sat, 29 Mar 2025 15:28:49 -0400 Subject: [PATCH] fix: remove extra spacing between proc-macro invocation and recipient declaration --- src/lib.rs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 1b0b9dc..f47742b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,50 +1,50 @@ use std::{boxed::Box, fs, io::Seek, path, vec}; - use walkdir::WalkDir; -#[derive(Debug)] +#[derive(Debug)] pub struct KosmoraVfs { index: KosmoraIndex, packages: Vec, } -#[derive(Debug)] +#[derive(Debug)] struct KosmoraIndex { index: Vec, } -#[derive(Debug)] +#[derive(Debug)] struct KosmoraPackage { id: usize, inode_index: KosmoraDirectory, } -#[derive(Debug)] +#[derive(Debug)] pub enum KosmoraINodeType { File(KosmoraFile), Directory(KosmoraDirectory), } -#[derive(Debug)] +#[derive(Debug)] pub struct KosmoraFileMetadata { name: String, extension: Option, size: usize, } -#[derive(Debug)] +#[derive(Debug)] pub struct KosmoraFile { metadata: KosmoraFileMetadata, data: Vec, } + #[derive(Debug)] pub struct KosmoraDirectory { name: String, parent: Option>, children: Option>, } -#[derive(Debug)] +#[derive(Debug)] pub struct KosmoraINode { inode: KosmoraINodeType, }