From afb8ab448949eb19e09e1bdb4b263dc487a9be21 Mon Sep 17 00:00:00 2001 From: Igor Tolmachev Date: Fri, 21 Jun 2024 02:11:16 +0900 Subject: Implement deserialize Remove bincode crate and replace it by own written serializer --- src/structs/mod.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/structs/mod.rs') diff --git a/src/structs/mod.rs b/src/structs/mod.rs index feb37dd..36bc33e 100644 --- a/src/structs/mod.rs +++ b/src/structs/mod.rs @@ -3,6 +3,7 @@ mod error; pub mod ser; mod settings; +pub use de::ArchiveDeserializer; pub use error::{StructError, StructResult}; pub use ser::ArchiveSerializer; pub use settings::{ByteOrder, Settings, VariantIndexType}; -- cgit v1.2.3