Skip to content

Commit

Permalink
Add simple archive crate
Browse files Browse the repository at this point in the history
This crate is used to serialize result files into a simple format of
u8 path length - UTF-8 path - u32 data length - data

Changelog: Added
  • Loading branch information
Florian Guggi authored and florg-32 committed Sep 15, 2024
1 parent 4596429 commit d9fa479
Show file tree
Hide file tree
Showing 4 changed files with 393 additions and 1 deletion.
176 changes: 175 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ resolver = "2"
members = [
"scheduler",
"filevec",
"simple-archive"
]

[workspace.lints.clippy]
Expand Down
12 changes: 12 additions & 0 deletions simple-archive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[package]
name = "simple-archive"
version = "0.1.0"
edition = "2021"

[dependencies]
flate2 = "1.0.33"
libflate = "2.1.0"
zopfli = "0.8.1"

[lints]
workspace = true
Loading

0 comments on commit d9fa479

Please sign in to comment.