Skip to content

Commit 00e2baa

Browse files
committed
Disable more features of zip by default
If i understand correctly, this is an enhancement and not a breaking change, since bzip2 support was already feature-gated and the `time` feature is unused.
1 parent 5609785 commit 00e2baa

File tree

2 files changed

+4
-45
lines changed

2 files changed

+4
-45
lines changed

Cargo.lock

Lines changed: 1 addition & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "python-pkginfo"
3-
version = "0.6.2"
3+
version = "0.6.3"
44
authors = ["messense <[email protected]>"]
55
edition = "2021"
66
description = "Parse Python package metadata from sdist and bdists and etc."
@@ -21,10 +21,10 @@ serde = { version = "1.0.126", features = ["derive"], optional = true }
2121
tar = "0.4.35"
2222
thiserror = "1.0.30"
2323
xz = { version = "0.1.0", optional = true }
24-
zip = { version = ">=0.6,<2", default-features = false, features = ["bzip2", "deflate", "time"] }
24+
zip = { version = ">=0.6,<2", default-features = false, features = ["deflate"] }
2525

2626
[dev-dependencies]
2727
serde_json = "1.0.99"
2828

2929
[features]
30-
deprecated-formats = ["bzip2", "xz"]
30+
deprecated-formats = ["bzip2", "xz", "zip/bzip2"]

0 commit comments

Comments
 (0)