Skip to content

Commit

Permalink
Disable more features of zip by default
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
konstin committed Sep 19, 2024
1 parent 5609785 commit 00e2baa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 45 deletions.
43 changes: 1 addition & 42 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "python-pkginfo"
version = "0.6.2"
version = "0.6.3"
authors = ["messense <messense@icloud.com>"]
edition = "2021"
description = "Parse Python package metadata from sdist and bdists and etc."
Expand All @@ -21,10 +21,10 @@ serde = { version = "1.0.126", features = ["derive"], optional = true }
tar = "0.4.35"
thiserror = "1.0.30"
xz = { version = "0.1.0", optional = true }
zip = { version = ">=0.6,<2", default-features = false, features = ["bzip2", "deflate", "time"] }
zip = { version = ">=0.6,<2", default-features = false, features = ["deflate"] }

[dev-dependencies]
serde_json = "1.0.99"

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

0 comments on commit 00e2baa

Please sign in to comment.