Commit graph

854 commits

Author SHA1 Message Date
Chris Hennick
74c604f29c
Need aes-crypto feature to use crate::aes::PWD_VERIFY_LENGTH
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
2024-05-23 12:42:35 -07:00
Chris Hennick
fd6c1548a4
Merge branch 'master' into expose-aes-info 2024-05-23 12:39:58 -07:00
Chris Hennick
e08548392d
test: Tests in aes.rs can only run when aes-crypto is enabled 2024-05-23 12:39:37 -07:00
Arnaud Gourlay
6db572ce65
review & clippy 2024-05-23 20:14:01 +02:00
Arnaud Gourlay
6da1faa4f1
code review 2024-05-23 20:14:00 +02:00
Arnaud Gourlay
985d3a7809
Expose AES information 2024-05-23 20:14:00 +02:00
Chris Hennick
b0c666aa0c
chore: Continue to accept archives with invalid DateTime, and use now_utc() as default only when writing, not reading 2024-05-23 09:44:06 -07:00
Chris Hennick
7a34aa5f41
refactor!: Rename from_msdos to from_msdos_unchecked, make it unsafe, and add try_from_msdos (#145) 2024-05-23 09:04:53 -07:00
Chris Hennick
ef74a26dd5
Merge pull request #141 from sorairolake/deprecated-since
chore: Add `since` to `deprecated`
2024-05-23 03:44:38 +00:00
Shun Sakai
e3b12e313e
feat: Add fmt::Display for DateTime 2024-05-22 11:35:26 +09:00
Shun Sakai
00be854b11
feat: Implement more traits for DateTime
Support comparing, ordering and hashing.
2024-05-22 10:50:18 +09:00
Shun Sakai
e188a36d1c
chore: Add since to deprecated
Add the `since` field to the `deprecated` attribute for
`DateTime::from_time` and `DateTime::to_time`.
2024-05-22 09:57:23 +09:00
Shun Sakai
ac8b04c0f1
feat: Add TryFrom<DateTime> for OffsetDateTime 2024-05-21 15:38:39 +09:00
Chris Hennick
a731f2a4c6
refactor: Merge the hidden deflate-flate2 flag into the public one 2024-05-20 18:02:30 -07:00
Chris Hennick
870f915bc5
refactor: Rename _deflate-non-zopfli to _deflate-flate2 2024-05-20 12:02:05 -07:00
Chris Hennick
6071dc13b0
perf: Change default compression implementation to flate2/zlib-ng 2024-05-20 11:55:51 -07:00
Chris Hennick
89b9b668ec
refactor: Reject encrypted and using_data_descriptor files slightly faster in read_zipfile_from_stream 2024-05-19 16:53:56 -07:00
Chris Hennick
3afe549161
refactor: Convert impl TryInto<NaiveDateTime> for DateTime to impl TryFrom<DateTime> for NaiveDateTime (#136) 2024-05-19 11:51:20 -07:00
Chris Hennick
4b295d3d5a
Merge pull request #135 from sorairolake/docsrs
docs: Enable `doc_auto_cfg` feature with Docs.rs
2024-05-18 05:21:28 +00:00
Chris Hennick
e5ea797014
chore(#133): chmod -x src/result.rs 2024-05-17 19:13:10 -07:00
Shun Sakai
62788e213b
docs: Add package.metadata.docs.rs
This is to enable `doc_auto_cfg` feature with Docs.rs.
2024-05-18 09:42:23 +09:00
Chris Hennick
3e81fddb78
style: cargo fmt --all 2024-05-15 17:47:20 -07:00
Chris Hennick
1cb0e1b3b7
refactor: Eliminate deprecation warning when --all-features implicitly enables the deprecated feature 2024-05-15 17:13:20 -07:00
Chris Hennick
fbf111ef97
style: cargo fmt --all 2024-05-15 17:09:12 -07:00
Chris Hennick
3e06f6433a
chore: Fix borrow-of-moved-value 2024-05-15 17:08:40 -07:00
Chris Hennick
633a6733e6
refactor: Check if archive contains a symlink's target, without borrowing both at the same time 2024-05-15 17:06:57 -07:00
Chris Hennick
17fee7938a
refactor: Eliminate a clone that's no longer necessary 2024-05-15 16:57:37 -07:00
Chris Hennick
7536a98da1
chore: Box<str> doesn't directly convert to PathBuf, so convert back to String first 2024-05-15 16:55:00 -07:00
Chris Hennick
267ab432cf
chore: partial revert - only &str has chars(), but Box<str> should auto-deref 2024-05-15 16:51:12 -07:00
Chris Hennick
d78f127039
chore: contains_key needs a Box<str>, so generify is_dir to accept one 2024-05-15 16:49:05 -07:00
Chris Hennick
b7ac989013
refactor: is_dir only needs to look at the filename 2024-05-15 16:44:59 -07:00
Chris Hennick
09676e7bee
chore: Add missing ZipFileData::is_dir() method 2024-05-15 16:20:50 -07:00
Chris Hennick
1e574a961a
chore: Fix another Windows-specific error 2024-05-15 16:14:57 -07:00
Chris Hennick
91dcf305d7
chore: More bug fixes for Windows-specific symlink code 2024-05-15 16:11:37 -07:00
Chris Hennick
ce818e4df1
chore: More bug fixes for Windows-specific symlink code 2024-05-15 16:08:39 -07:00
Chris Hennick
aca750d616
chore: Bug fix: variable name change 2024-05-15 15:57:54 -07:00
Chris Hennick
9d11f4cf68
chore: Bug fix: need both internal and output path to determine whether to symlink_dir 2024-05-15 15:53:26 -07:00
Chris Hennick
2a67534fcb
chore: Another bug fix 2024-05-15 15:37:31 -07:00
Chris Hennick
47a07fb964
chore: Fix another error-type conversion error 2024-05-15 15:32:08 -07:00
Chris Hennick
23068ad7c2
chore: Fix error-type conversion on Windows 2024-05-15 15:22:49 -07:00
Chris Hennick
8435561093
chore: Fix continued issues, and factor out the Vec<u8>-to-OsString conversion (cc: #125) 2024-05-15 15:08:41 -07:00
Chris Hennick
c52ec50306
chore: Fix CI failure involving conversion to OsString for symlinks (see my comments on #125) 2024-05-15 14:47:52 -07:00
Chris Hennick
f275acf1d2
chore: Move path join into platform-independent code 2024-05-14 13:25:15 -07:00
Chris Hennick
0ec043d6be
style: Remove an unused import on Windows 2024-05-14 13:11:57 -07:00
Chris Hennick
d96ba59197
doc: Document symlink extraction behavior 2024-05-13 20:56:03 -07:00
Chris Hennick
8715d936cb
fix: Extract symlinks into symlinks on Unix and Windows, and fix a bug that affected making directories writable on MacOS 2024-05-13 20:50:40 -07:00
Chris Hennick
be8cb432f6
style: cargo fmt --all 2024-05-13 20:22:11 -07:00
Chris Hennick
3bf0301e39
feat: Add is_symlink method 2024-05-13 19:52:14 -07:00
Chris Hennick
a385aaf854
doc: Important correction: consuming package has to *target* Unix, e.g. this lib doesn't protect you when running on Wine or Mono 2024-05-10 16:40:41 -07:00
Chris Hennick
4a5d28ed30
doc: Important correction: contents might not have been extracted at all 2024-05-10 16:39:12 -07:00