From 47b25c05a6be51b93c909d38a19440d1c04ba2f8 Mon Sep 17 00:00:00 2001 From: Ben Bridle Date: Tue, 19 Dec 2023 16:23:29 +1300 Subject: Large collection of changes --- src/lib.rs | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index deea25c..38fb5ee 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,10 +1,16 @@ #![feature(io_error_more)] +#![feature(never_type)] +mod entry; mod error; -pub use error::*; - mod operations; + +pub use entry::*; +pub use error::*; pub use operations::*; -mod entry; -pub use entry::{Entry, EntryType}; +pub use std::path::{Path, PathBuf}; + +pub type ReadResult = Result; +pub type WriteResult = Result; + -- cgit v1.2.3-70-g09d2