Skip to content
Closed
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
406 changes: 178 additions & 228 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.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.37", features = ["derive", "cargo"] }
clap_complete = "4.5.48"
clap = { version = "4.5.38", features = ["derive", "cargo"] }
clap_complete = "4.5.50"
prodash = { version = "29.0.2", optional = true }
is-terminal = { version = "0.4.0", optional = true }
env_logger = { version = "0.11.8", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions gitoxide-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ serde = { version = "1.0.114", optional = true, default-features = false, featur
anyhow = "1.0.98"
thiserror = "2.0.0"
bytesize = "2.0.1"
tempfile = "3.19.1"
tempfile = "3.20.0"

# for async-client
async-trait = { version = "0.1.51", optional = true }
Expand All @@ -83,7 +83,7 @@ rusqlite = { version = "0.35.0", optional = true, features = ["bundled"] }

# for 'corpus'
parking_lot = { version = "0.12.1", optional = true }
sysinfo = { version = "0.34.2", optional = true, default-features = false, features = ["system"] }
sysinfo = { version = "0.35.1", 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.7", features = ["simd"] }
winnow = { version = "0.7.10", features = ["simd"] }
itoa = "1.0.1"
serde = { version = "1.0.114", optional = true, default-features = false, features = [
"derive",
Expand Down
4 changes: 2 additions & 2 deletions gix-archive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,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 = "2.6.1", optional = true, default-features = false, features = ["deflate"] }
jiff = { version = "0.2.12", default-features = false, features = ["std"] }
zip = { version = "3.0.0", optional = true, default-features = false, features = ["deflate"] }
jiff = { version = "0.2.13", 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-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ gix-sec = { version = "^0.11.0", path = "../gix-sec" }
gix-ref = { version = "^0.52.1", path = "../gix-ref" }
gix-glob = { version = "^0.20.0", path = "../gix-glob" }

winnow = { version = "0.7.7", features = ["simd"] }
winnow = { version = "0.7.10", features = ["simd"] }
memchr = "2"
thiserror = "2.0.0"
unicode-bom = { version = "2.0.3" }
Expand Down
2 changes: 1 addition & 1 deletion gix-date/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ 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.12"
jiff = "0.2.13"
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
Expand Down
2 changes: 1 addition & 1 deletion gix-discover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ is_ci = "1.1.1"
defer = "0.2.1"

[target.'cfg(any(unix, windows))'.dev-dependencies]
tempfile = "3.19.1"
tempfile = "3.20.0"
2 changes: 1 addition & 1 deletion gix-fs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ fastrand = { version = "2.1.0", default-features = false, features = ["std"] }
[dev-dependencies]
crossbeam-channel = "0.5.15"
is_ci = "1.1.1"
tempfile = "3.19.1"
tempfile = "3.20.0"
2 changes: 1 addition & 1 deletion gix-lock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ gix-tempfile = { version = "^17.1.0", default-features = false, path = "../gix-t
thiserror = "2.0.0"

[dev-dependencies]
tempfile = "3.19.1"
tempfile = "3.20.0"
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.7", features = ["simd"] }
winnow = { version = "0.7.10", features = ["simd"] }
smallvec = { version = "1.15.0", features = ["write"] }
serde = { version = "1.0.114", optional = true, default-features = false, features = [
"derive",
Expand Down
2 changes: 1 addition & 1 deletion gix-odb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ gix-pack = { version = "^0.59.1", path = "../gix-pack", default-features = false
gix-fs = { version = "^0.15.0", path = "../gix-fs" }
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }

tempfile = "3.19.1"
tempfile = "3.20.0"
thiserror = "2.0.0"
parking_lot = { version = "0.12.0" }
arc-swap = "1.5.0"
Expand Down
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.7", features = ["simd"] }
winnow = { version = "0.7.10", features = ["simd"] }

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

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

# packed refs
Expand Down
2 changes: 1 addition & 1 deletion gix-sec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ windows-sys = { version = "0.59.0", features = [
] }

[dev-dependencies]
tempfile = "3.19.1"
tempfile = "3.20.0"

[package.metadata.docs.rs]
all-features = true
Expand Down
4 changes: 2 additions & 2 deletions gix-tempfile/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ gix-fs = { version = "^0.15.0", path = "../gix-fs" }
parking_lot = "0.12.1"
dashmap = { version = "6.0.1", optional = true }
once_cell = { version = "1.21.3", default-features = false, features = ["race", "std"] }
tempfile = "3.19.1"
tempfile = "3.20.0"

signal-hook = { version = "0.3.9", default-features = false, optional = true }
signal-hook = { version = "0.3.18", default-features = false, optional = true }
signal-hook-registry = { version = "1.4.5", optional = true }

document-features = { version = "0.2.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion gix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ gix-transport = { version = "^0.47.0", path = "../gix-transport", optional = tru
# Just to get the progress-tree feature
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 }
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",
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.37", features = ["derive"] }
clap = { version = "4.5.38", features = ["derive"] }
gix = { version = "^0.72.1", path = "../../gix", default-features = false, features = ["attributes", "revision"] }
once_cell = "1.21.3"
regex = { version = "1.11.1", default-features = false, features = ["std"] }
6 changes: 3 additions & 3 deletions tests/tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ gix-worktree = { version = "0.41.0", path = "../../gix-worktree" }
gix-fs = { version = "0.15.0", path = "../../gix-fs" }
gix-tempfile = { version = "17.1.0", path = "../../gix-tempfile", default-features = false, features = ["signals"] }

winnow = { version = "0.7.7", features = ["simd"] }
winnow = { version = "0.7.10", features = ["simd"] }
fastrand = "2.0.0"
bstr = { version = "1.12.0", default-features = false }
crc = "3.0.0"
crc = "3.3.0"
once_cell = "1.21.3"
tempfile = "3.19.1"
tempfile = "3.20.0"
fs_extra = "1.2.0"
parking_lot = { version = "0.12.0" }
is_ci = "1.1.1"
Expand Down
Loading