aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorIgor Tolmachev <me@igorek.dev>2024-07-16 01:59:53 +0900
committerIgor Tolmachev <me@igorek.dev>2024-07-16 01:59:53 +0900
commita83767f9fbd51df654901b52bdba7838f6a10bf9 (patch)
treee9e2fcfb9975a2c2dd6e65c65fd736a035ea6cae /Cargo.toml
parent2fdbec0525bc2a0839ea649106886cb157507a38 (diff)
downloadarchivator-a83767f9fbd51df654901b52bdba7838f6a10bf9.tar.gz
archivator-a83767f9fbd51df654901b52bdba7838f6a10bf9.zip
Add traditional PKWARE decryption.
- Compression and encryption may not work together - Password check is not yet implemented - Unoptimized crc32 function
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index cb00d2b..96900a5 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -14,6 +14,7 @@ exclude = [".vscode/"]
14[dependencies] 14[dependencies]
15bzip2 = "0.4.4" 15bzip2 = "0.4.4"
16chrono = "0.4.29" 16chrono = "0.4.29"
17crc32fast = "1.4.2"
17flate2 = "1.0.30" 18flate2 = "1.0.30"
18liblzma = "0.3.2" 19liblzma = "0.3.2"
19serde = { version = "1.0.203", features = ["derive"] } 20serde = { version = "1.0.203", features = ["derive"] }