aboutsummaryrefslogtreecommitdiff
path: root/src/structs/mod.rs
diff options
context:
space:
mode:
authorIgor Tolmachev <me@igorek.dev>2024-06-21 02:11:16 +0900
committerIgor Tolmachev <me@igorek.dev>2024-06-23 15:34:35 +0900
commitafb8ab448949eb19e09e1bdb4b263dc487a9be21 (patch)
tree5806bc9bc566dcda64818917a222c313dde3cb55 /src/structs/mod.rs
parentd6055b5ac4f3ff5016bc4881cf1cc109a22c40ba (diff)
downloadarchivator-afb8ab448949eb19e09e1bdb4b263dc487a9be21.tar.gz
archivator-afb8ab448949eb19e09e1bdb4b263dc487a9be21.zip
Implement deserialize
Remove bincode crate and replace it by own written serializer
Diffstat (limited to 'src/structs/mod.rs')
-rw-r--r--src/structs/mod.rs1
1 files changed, 1 insertions, 0 deletions
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;
3pub mod ser; 3pub mod ser;
4mod settings; 4mod settings;
5 5
6pub use de::ArchiveDeserializer;
6pub use error::{StructError, StructResult}; 7pub use error::{StructError, StructResult};
7pub use ser::ArchiveSerializer; 8pub use ser::ArchiveSerializer;
8pub use settings::{ByteOrder, Settings, VariantIndexType}; 9pub use settings::{ByteOrder, Settings, VariantIndexType};