started project

- packs can now be automatically zipped
- reads from config file but doesn't do anything with it yet
This commit is contained in:
FantasyPvP
2023-09-01 02:31:27 +01:00
commit 403e6ba087
7 changed files with 993 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
[package]
name = "pack_sync"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dirs = "5.0.1"
num_cpus = "1.16.0"
serde = { version = "1.0.188", features = ["derive"] }
serde_yaml = "0.9.25"
walkdir = "2.3.3"
zip = "0.6.6"
zip_archive = "1.2.2"