From f8c3c93824645a807d28b760855b4676ea479720 Mon Sep 17 00:00:00 2001 From: Igor Tolmachev Date: Sat, 15 Jun 2024 03:30:50 +0900 Subject: Add simple zip reader --- src/structs/ser.rs | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/structs/ser.rs (limited to 'src/structs/ser.rs') diff --git a/src/structs/ser.rs b/src/structs/ser.rs new file mode 100644 index 0000000..a3fe291 --- /dev/null +++ b/src/structs/ser.rs @@ -0,0 +1,6 @@ +use crate::ArchiveError; +use serde::{ser, Serialize}; + +pub struct ArchiveSerializer { + bin: Vec, +} -- cgit v1.2.3