Skip to content

Bump the cargo group across 1 directory with 68 updates #60

New issue

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

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

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
547 changes: 239 additions & 308 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,9 @@ gitoxide-core = { version = "^0.47.1", path = "gitoxide-core" }
gix-features = { version = "^0.42.1", path = "gix-features" }
gix = { version = "^0.72.1", path = "gix", default-features = false }

clap = { version = "4.5.39", features = ["derive", "cargo"] }
clap_complete = "4.5.52"
prodash = { version = "29.0.2", optional = true }
clap = { version = "4.5.40", features = ["derive", "cargo"] }
clap_complete = "4.5.54"
prodash = { version = "30.0.1", 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
6 changes: 3 additions & 3 deletions gitoxide-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,16 +74,16 @@ gix-url = { version = "^0.31.0", path = "../gix-url", optional = true }
jwalk = { version = "0.8.0", optional = true }

# for 'hours'
fs-err = { version = "3.1.0", optional = true }
fs-err = { version = "3.1.1", optional = true }
crossbeam-channel = { version = "0.5.15", optional = true }
smallvec = { version = "1.15.0", optional = true }
smallvec = { version = "1.15.1", optional = true }

# for 'query' and 'corpus'
rusqlite = { version = "0.36.0", optional = true, features = ["bundled"] }

# for 'corpus'
parking_lot = { version = "0.12.4", optional = true }
sysinfo = { version = "0.35.1", optional = true, default-features = false, features = ["system"] }
sysinfo = { version = "0.35.2", optional = true, default-features = false, features = ["system"] }
serde_json = { version = "1.0.65", optional = true }
tracing-forest = { version = "0.1.5", features = ["serde"], optional = true }
tracing-subscriber = { version = "0.3.17", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions gix-archive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ gix-path = { version = "^0.10.18", path = "../gix-path", optional = true }
gix-date = { version = "^0.10.2", path = "../gix-date" }

flate2 = { version = "1.1.1", optional = true, default-features = false, features = ["zlib-rs"] }
zip = { version = "4.0.0", optional = true, default-features = false, features = ["deflate-flate2"] }
jiff = { version = "0.2.14", default-features = false, features = ["std"] }
zip = { version = "4.2.0", optional = true, default-features = false, features = ["deflate-flate2"] }
jiff = { version = "0.2.15", default-features = false, features = ["std"] }

thiserror = "2.0.0"
bstr = { version = "1.12.0", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion gix-attributes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ gix-glob = { version = "^0.20.1", path = "../gix-glob" }
gix-trace = { version = "^0.1.12", path = "../gix-trace" }

bstr = { version = "1.12.0", default-features = false, features = ["std", "unicode"] }
smallvec = "1.15.0"
smallvec = "1.15.1"
kstring = "2.0.0"
unicode-bom = { version = "2.0.3" }
thiserror = "2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion gix-blame/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ gix-hash = { version = "^0.18.0", path = "../gix-hash" }
gix-worktree = { version = "^0.41.0", path = "../gix-worktree", default-features = false, features = ["attributes"] }
gix-traverse = { version = "^0.46.2", path = "../gix-traverse" }

smallvec = "1.15.0"
smallvec = "1.15.1"
thiserror = "2.0.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion gix-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ thiserror = "2.0.0"
unicode-bom = { version = "2.0.3" }
bstr = { version = "1.12.0", default-features = false, features = ["std"] }
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
smallvec = "1.15.0"
smallvec = "1.15.1"
once_cell = "1.21.3"

document-features = { version = "0.2.0", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions gix-date/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ serde = ["dep:serde", "bstr/serde"]
bstr = { version = "1.12.0", default-features = false, features = ["std"] }
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
itoa = "1.0.1"
jiff = "0.2.14"
jiff = "0.2.15"
thiserror = "2.0.0"
# TODO: used for quick and easy `TimeBacking: std::io::Write` implementation, but could make that `Copy`
# and remove this dep with custom impl
smallvec = { version = "1.15.0", features = ["write"] }
smallvec = { version = "1.15.1", features = ["write"] }

document-features = { version = "0.2.0", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion gix-diff/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ gix-trace = { version = "^0.1.12", path = "../gix-trace", optional = true }
gix-traverse = { version = "^0.46.2", path = "../gix-traverse", optional = true }

thiserror = "2.0.0"
imara-diff = { version = "0.1.8", optional = true }
imara-diff = { version = "0.2.0", optional = true }
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
getrandom = { version = "0.2.8", optional = true, default-features = false, features = ["js"] }
bstr = { version = "1.12.0", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions gix-features/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,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.2", optional = true }
prodash = { version = "30.0.1", optional = true }
bytesize = { version = "2.0.1", optional = true }

# pipe
Expand All @@ -129,7 +129,7 @@ once_cell = { version = "1.21.3", optional = true }
document-features = { version = "0.2.0", optional = true }

[target.'cfg(unix)'.dependencies]
libc = { version = "0.2.172" }
libc = { version = "0.2.174" }

[dev-dependencies]
bstr = { version = "1.12.0", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion gix-filter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ gix-attributes = { version = "^0.26.1", path = "../gix-attributes" }
encoding_rs = "0.8.32"
bstr = { version = "1.12.0", default-features = false, features = ["std"] }
thiserror = "2.0.0"
smallvec = "1.15.0"
smallvec = "1.15.1"


[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions gix-index/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ bstr = { version = "1.12.0", default-features = false }
serde = { version = "1.0.114", optional = true, default-features = false, features = [
"derive",
] }
smallvec = "1.15.0"
smallvec = "1.15.1"
itoa = "1.0.3"
bitflags = "2"

Expand All @@ -55,7 +55,7 @@ rustix = { version = "1.0.7", default-features = false, features = [
"std",
"fs",
] }
libc = { version = "0.2.172" }
libc = { version = "0.2.174" }

[dev-dependencies]
gix-testtools = { path = "../tests/tools" }
Expand Down
2 changes: 1 addition & 1 deletion gix-merge/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ gix-diff = { version = "^0.52.1", path = "../gix-diff", default-features = false
gix-index = { version = "^0.40.1", path = "../gix-index" }

thiserror = "2.0.0"
imara-diff = { version = "0.1.8" }
imara-diff = { version = "0.2.0" }
bstr = { version = "1.12.0", default-features = false }
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }

Expand Down
2 changes: 1 addition & 1 deletion gix-negotiate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ gix-date = { version = "^0.10.2", path = "../gix-date" }
gix-commitgraph = { version = "^0.28.0", path = "../gix-commitgraph" }
gix-revwalk = { version = "^0.20.1", path = "../gix-revwalk" }
thiserror = "2.0.0"
smallvec = "1.15.0"
smallvec = "1.15.1"
bitflags = "2"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion gix-object/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ bstr = { version = "1.12.0", default-features = false, features = [
"unicode",
] }
winnow = { version = "0.7.10", features = ["simd"] }
smallvec = { version = "1.15.0", features = ["write"] }
smallvec = { version = "1.15.1", features = ["write"] }
serde = { version = "1.0.114", optional = true, default-features = false, features = [
"derive",
] }
Expand Down
2 changes: 1 addition & 1 deletion gix-pack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ gix-traverse = { version = "^0.46.2", path = "../gix-traverse", optional = true
gix-diff = { version = "^0.52.1", path = "../gix-diff", default-features = false, optional = true }

memmap2 = "0.9.0"
smallvec = "1.15.0"
smallvec = "1.15.1"
parking_lot = { version = "0.12.4", default-features = false, optional = true }
thiserror = "2.0.0"

Expand Down
2 changes: 1 addition & 1 deletion gix-path/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ serial_test = { version = "3.1.0", default-features = false }

[target.'cfg(windows)'.dev-dependencies]
known-folders = "1.1.0"
windows = { version = "0.61.1", features = ["Win32_System_Threading"] }
windows = { version = "0.61.3", features = ["Win32_System_Threading"] }
winreg = "0.55.0"
2 changes: 1 addition & 1 deletion gix-refspec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ gix-hash = { version = "^0.18.0", path = "../gix-hash" }

bstr = { version = "1.12.0", default-features = false, features = ["std"] }
thiserror = "2.0.0"
smallvec = "1.15.0"
smallvec = "1.15.1"

[dev-dependencies]
gix-testtools = { path = "../tests/tools" }
2 changes: 1 addition & 1 deletion gix-revwalk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ gix-hashtable = { version = "^0.8.1", path = "../gix-hashtable" }
gix-commitgraph = { version = "^0.28.0", path = "../gix-commitgraph" }

thiserror = "2.0.0"
smallvec = "1.15.0"
smallvec = "1.15.1"

[dev-dependencies]
gix-testtools = { path = "../tests/tools" }
2 changes: 1 addition & 1 deletion gix-sec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ bitflags = "2"
document-features = { version = "0.2.1", optional = true }

[target.'cfg(not(windows))'.dependencies]
libc = "0.2.172"
libc = "0.2.174"

[target.'cfg(windows)'.dependencies]
gix-path = { version = "^0.10.18", path = "../gix-path" }
Expand Down
2 changes: 1 addition & 1 deletion gix-tempfile/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ signals = ["dep:signal-hook", "dep:signal-hook-registry"]
hp-hashmap = ["dep:dashmap"]

[target.'cfg(not(windows))'.dependencies]
libc = { version = "0.2.172", default-features = false }
libc = { version = "0.2.174", default-features = false }

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 1 addition & 1 deletion gix-trace/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ tracing-detail = []


[dependencies]
tracing-core = { version = "0.1.31", optional = true }
tracing-core = { version = "0.1.34", optional = true }

document-features = { version = "0.2.0", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion gix-transport/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ curl = { version = "0.4", optional = true }

# for http-client-reqwest
# all but the 'default-tls' feature
reqwest = { version = "0.12.18", optional = true, default-features = false, features = ["blocking", "charset", "http2", "macos-system-configuration"] }
reqwest = { version = "0.12.20", optional = true, default-features = false, features = ["blocking", "charset", "http2", "macos-system-configuration"] }

## If used in conjunction with `async-client`, the `connect()` method will become available along with supporting the git protocol over TCP,
## where the TCP stream is created using this crate.
Expand Down
2 changes: 1 addition & 1 deletion gix-traverse/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ gix-date = { version = "^0.10.2", path = "../gix-date" }
gix-hashtable = { version = "^0.8.1", path = "../gix-hashtable" }
gix-revwalk = { version = "^0.20.1", path = "../gix-revwalk" }
gix-commitgraph = { version = "^0.28.0", path = "../gix-commitgraph" }
smallvec = "1.15.0"
smallvec = "1.15.1"
thiserror = "2.0.0"
bitflags = "2"
4 changes: 2 additions & 2 deletions gix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -370,14 +370,14 @@ gix-protocol = { version = "^0.50.1", path = "../gix-protocol" }
gix-transport = { version = "^0.47.0", path = "../gix-transport", optional = true }

# Just to get the progress-tree feature
prodash = { version = "29.0.2", optional = true, features = ["progress-tree"] }
prodash = { version = "30.0.1", optional = true, features = ["progress-tree"] }
once_cell = "1.21.3"
signal-hook = { version = "0.3.18", default-features = false, optional = true }
thiserror = "2.0.0"
serde = { version = "1.0.114", optional = true, default-features = false, features = [
"derive",
] }
smallvec = "1.15.0"
smallvec = "1.15.1"
async-std = { version = "1.12.0", optional = true }

## For use in rev-parse, which provides searching commits by running a regex on their message.
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.98"
clap = { version = "4.5.39", features = ["derive"] }
clap = { version = "4.5.40", features = ["derive"] }
gix = { version = "^0.72.1", path = "../../gix", default-features = false, features = ["attributes", "blame", "blob-diff", "revision"] }
once_cell = "1.21.3"
regex = { version = "1.11.1", default-features = false, features = ["std"] }
Loading