Skip to content

Commit

Permalink
Merge pull request #14 from decathorpe/main
Browse files Browse the repository at this point in the history
deps: relax zip dependency to allow building with v0.6 and v1
  • Loading branch information
konstin authored May 21, 2024
2 parents eca3cb9 + 22ccdac commit bfd695b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ repository = "https://github.com/PyO3/python-pkginfo-rs"

[dependencies]
bzip2 = { version = "0.4.4", optional = true }
flate2 = "1.0.20"
flate2 = "1.0.22"
fs-err = "2.6.0"
mailparse = "0.15"
rfc2047-decoder = "1.0.5"
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 = "1.0.0", default-features = false, features = ["bzip2", "deflate", "time"] }
zip = { version = ">=0.6,<2", default-features = false, features = ["bzip2", "deflate", "time"] }

[dev-dependencies]
serde_json = "1.0.99"
Expand Down

0 comments on commit bfd695b

Please sign in to comment.