Skip to content

Bump the cargo group across 1 directory with 27 updates #67

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
236 changes: 160 additions & 76 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ gitoxide-core = { version = "^0.48.0", path = "gitoxide-core" }
gix-features = { version = "^0.43.0", path = "gix-features" }
gix = { version = "^0.73.0", path = "gix", default-features = false }

clap = { version = "4.5.40", features = ["derive", "cargo"] }
clap_complete = "4.5.54"
clap = { version = "4.5.41", features = ["derive", "cargo"] }
clap_complete = "4.5.55"
prodash = { version = "30.0.1", optional = true }
is-terminal = { version = "0.4.0", optional = true }
env_logger = { version = "0.11.8", 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 @@ -67,7 +67,7 @@ async-net = { version = "2.0", optional = true }
futures-lite = { version = "2.1.0", optional = true }
async-io = { version = "2.4", optional = true }
futures-io = { version = "0.3.16", optional = true }
blocking = { version = "1.0.2", optional = true }
blocking = { version = "1.6.2", optional = true }

# for 'organize' functionality
gix-url = { version = "^0.32.0", path = "../gix-url", optional = true }
Expand All @@ -79,11 +79,11 @@ crossbeam-channel = { version = "0.5.15", optional = true }
smallvec = { version = "1.15.1", optional = true }

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

# for 'corpus'
parking_lot = { version = "0.12.4", optional = true }
sysinfo = { version = "0.35.2", optional = true, default-features = false, features = ["system"] }
sysinfo = { version = "0.36.0", 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
2 changes: 1 addition & 1 deletion gix-actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ bstr = { version = "1.12.0", default-features = false, features = [
"std",
"unicode",
] }
winnow = { version = "0.7.10", features = ["simd"] }
winnow = { version = "0.7.12", features = ["simd"] }
itoa = "1.0.1"
serde = { version = "1.0.114", optional = true, default-features = false, features = [
"derive",
Expand Down
2 changes: 1 addition & 1 deletion gix-archive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ gix-path = { version = "^0.10.19", path = "../gix-path", optional = true }
gix-date = { version = "^0.10.3", path = "../gix-date" }

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

thiserror = "2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion gix-commitgraph/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ gix-hash = { version = "^0.19.0", path = "../gix-hash" }
gix-chunk = { version = "^0.4.11", path = "../gix-chunk" }

bstr = { version = "1.12.0", default-features = false, features = ["std"] }
memmap2 = "0.9.0"
memmap2 = "0.9.7"
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
thiserror = "2.0.0"

Expand Down
2 changes: 1 addition & 1 deletion gix-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ gix-sec = { version = "^0.12.0", path = "../gix-sec" }
gix-ref = { version = "^0.53.0", path = "../gix-ref" }
gix-glob = { version = "^0.21.0", path = "../gix-glob" }

winnow = { version = "0.7.10", features = ["simd"] }
winnow = { version = "0.7.12", features = ["simd"] }
memchr = "2"
thiserror = "2.0.0"
unicode-bom = { version = "2.0.3" }
Expand Down
2 changes: 1 addition & 1 deletion gix-features/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ parking_lot = { version = "0.12.4", default-features = false, optional = true }
walkdir = { version = "2.3.2", optional = true } # used when parallel is off

# hashing
crc32fast = { version = "1.2.1", optional = true }
crc32fast = { version = "1.5.0", optional = true }

# progress
prodash = { version = "30.0.1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion gix-index/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ gix-utils = { version = "^0.3.0", path = "../gix-utils" }
hashbrown = "0.15.4"
fnv = "1.0.7"
thiserror = "2.0.0"
memmap2 = "0.9.0"
memmap2 = "0.9.7"
filetime = "0.2.15"
bstr = { version = "1.12.0", default-features = false }

Expand Down
2 changes: 1 addition & 1 deletion gix-object/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ bstr = { version = "1.12.0", default-features = false, features = [
"std",
"unicode",
] }
winnow = { version = "0.7.10", features = ["simd"] }
winnow = { version = "0.7.12", features = ["simd"] }
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 @@ -45,7 +45,7 @@ gix-hashtable = { version = "^0.9.0", path = "../gix-hashtable", optional = true
gix-traverse = { version = "^0.47.0", path = "../gix-traverse", optional = true }
gix-diff = { version = "^0.53.0", path = "../gix-diff", default-features = false, optional = true }

memmap2 = "0.9.0"
memmap2 = "0.9.7"
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-pack/tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ maplit = "1.0.2"
gix-object = { path = "../../gix-object" }
gix-traverse = { path = "../../gix-traverse" }
gix-hash = { path = "../../gix-hash" }
memmap2 = "0.9.0"
memmap2 = "0.9.7"
2 changes: 1 addition & 1 deletion gix-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ bstr = { version = "1.12.0", default-features = false, features = [
"std",
"unicode",
] }
winnow = { version = "0.7.10", features = ["simd"] }
winnow = { version = "0.7.12", features = ["simd"] }

# for async-client
async-trait = { version = "0.1.51", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions gix-ref/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ gix-lock = { version = "^18.0.0", path = "../gix-lock" }
gix-tempfile = { version = "^18.0.0", default-features = false, path = "../gix-tempfile" }

thiserror = "2.0.0"
winnow = { version = "0.7.10", features = ["simd"] }
winnow = { version = "0.7.12", features = ["simd"] }
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }

# packed refs
memmap2 = "0.9.0"
memmap2 = "0.9.7"

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

Expand Down
2 changes: 1 addition & 1 deletion gix-sec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ libc = "0.2.174"

[target.'cfg(windows)'.dependencies]
gix-path = { version = "^0.10.19", path = "../gix-path" }
windows-sys = { version = "0.59.0", features = [
windows-sys = { version = "0.60.2", features = [
"Win32_Foundation",
"Win32_Security_Authorization",
"Win32_Storage_FileSystem",
Expand Down
2 changes: 1 addition & 1 deletion gix-transport/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ gix-pack = { path = "../gix-pack", default-features = false, features = [
gix-hash = { path = "../gix-hash" }
async-std = { version = "1.9.0", features = ["attributes"] }
maybe-async = "0.2.6"
blocking = "1.0.2"
blocking = "1.6.2"

[package.metadata.docs.rs]
features = ["http-client-curl", "document-features", "serde"]
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.40", features = ["derive"] }
clap = { version = "4.5.41", features = ["derive"] }
gix = { version = "^0.73.0", 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"] }
2 changes: 1 addition & 1 deletion tests/tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ gix-worktree = { version = "^0.42.0", path = "../../gix-worktree" }
gix-fs = { version = "^0.16.0", path = "../../gix-fs" }
gix-tempfile = { version = "^18.0.0", path = "../../gix-tempfile", default-features = false, features = ["signals"] }

winnow = { version = "0.7.10", features = ["simd"] }
winnow = { version = "0.7.12", features = ["simd"] }
fastrand = "2.0.0"
bstr = { version = "1.12.0", default-features = false }
crc = "3.3.0"
Expand Down
Loading