Skip to content

Commit

Permalink
Merge pull request #1379 from belt/main
Browse files Browse the repository at this point in the history
chore: version bump dependency zip-2.0.0
  • Loading branch information
Byron authored May 25, 2024
2 parents f9c2623 + 67bc66c commit b4ab6f7
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
13 changes: 7 additions & 6 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ repository = "https://github.com/Byron/gitoxide"
authors = ["Sebastian Thiel <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
version = "0.36.0"
version = "0.36.1"
default-run = "gix"
include = ["src/**/*", "LICENSE-*", "README.md"]
resolver = "2"
Expand Down
4 changes: 2 additions & 2 deletions gix-archive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gix-archive"
version = "0.13.0"
version = "0.13.1"
repository = "https://github.com/Byron/gitoxide"
license = "MIT OR Apache-2.0"
description = "archive generation from of a worktree stream"
Expand Down Expand Up @@ -31,7 +31,7 @@ gix-path = { version = "^0.10.7", path = "../gix-path", optional = true }
gix-date = { version = "^0.8.6", path = "../gix-date" }

flate2 = { version = "1.0.26", optional = true }
zip = { version = "1.3.1", optional = true, default-features = false, features = ["deflate", "time"] }
zip = { version = "2.1.0", optional = true, default-features = false, features = ["deflate", "time"] }
time = { version = "0.3.23", optional = true, default-features = false, features = ["std"] }

thiserror = "1.0.26"
Expand Down
4 changes: 2 additions & 2 deletions gix-archive/tests/archive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,8 @@ mod from_tree {
},
|buf| {
assert!(
buf.len() < 1220,
"bigger than uncompressed for some reason: {} < 1220",
buf.len() < 1230,
"much bigger than uncompressed for some reason (565): {} < 1230",
buf.len()
);
let mut ar = zip::ZipArchive::new(std::io::Cursor::new(buf.as_slice()))?;
Expand Down

0 comments on commit b4ab6f7

Please sign in to comment.