Skip to content

Bump prodash (unifying bytesize version) and other dependencies #1953

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
merged 1 commit into from
Apr 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 20 additions & 26 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,9 @@ gitoxide-core = { version = "^0.46.0", path = "gitoxide-core" }
gix-features = { version = "^0.41.1", path = "gix-features" }
gix = { version = "^0.71.0", path = "gix", default-features = false }

clap = { version = "4.5.35", features = ["derive", "cargo"] }
clap = { version = "4.5.36", features = ["derive", "cargo"] }
clap_complete = "4.5.47"
prodash = { version = "29.0.1", optional = true }
prodash = { version = "29.0.2", optional = true }
is-terminal = { version = "0.4.0", optional = true }
env_logger = { version = "0.11.8", default-features = false }
crosstermion = { version = "0.14.0", optional = true, default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion gix-features/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ walkdir = { version = "2.3.2", optional = true } # used when parallel is off
crc32fast = { version = "1.2.1", optional = true }

# progress
prodash = { version = "29.0.1", optional = true }
prodash = { version = "29.0.2", optional = true }
bytesize = { version = "2.0.1", optional = true }

# pipe
Expand Down
2 changes: 1 addition & 1 deletion gix-index/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ bitflags = "2"
document-features = { version = "0.2.0", optional = true }

[target.'cfg(not(windows))'.dependencies]
rustix = { version = "1.0.3", default-features = false, features = [
rustix = { version = "1.0.5", default-features = false, features = [
"std",
"fs",
] }
Expand Down
2 changes: 1 addition & 1 deletion gix-prompt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ gix-config-value = { version = "^0.14.12", path = "../gix-config-value" }
thiserror = "2.0.0"

[target.'cfg(unix)'.dependencies]
rustix = { version = "1.0.3", features = ["termios"] }
rustix = { version = "1.0.5", features = ["termios"] }
parking_lot = "0.12.1"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion gix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ gix-protocol = { version = "^0.49.0", path = "../gix-protocol" }
gix-transport = { version = "^0.46.0", path = "../gix-transport", optional = true }

# Just to get the progress-tree feature
prodash = { version = "29.0.1", optional = true, features = ["progress-tree"] }
prodash = { version = "29.0.2", optional = true, features = ["progress-tree"] }
once_cell = "1.21.3"
signal-hook = { version = "0.3.9", default-features = false, optional = true }
thiserror = "2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion tests/it/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ path = "src/main.rs"

[dependencies]
anyhow = "1.0.86"
clap = { version = "4.5.35", features = ["derive"] }
clap = { version = "4.5.36", features = ["derive"] }
gix = { version = "^0.71.0", path = "../../gix", default-features = false, features = ["attributes", "revision"] }
once_cell = "1.21.3"
regex = { version = "1.11.1", default-features = false, features = ["std"] }
Loading