Skip to content
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
166 changes: 86 additions & 80 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions gitoxide-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@ gix-url = { version = "^0.32.0", path = "../gix-url", optional = true }
jwalk = { version = "0.8.0", optional = true }

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

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

# for 'corpus'
parking_lot = { version = "0.12.4", optional = true }
parking_lot = { version = "0.12.5", optional = true }
sysinfo = { version = "0.37.2", optional = true, default-features = false, features = ["system"] }
serde_json = { version = "1.0.145", optional = true }
tracing-forest = { version = "0.2.0", features = ["serde"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion gix-archive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ gix-object = { version = "^0.50.2", path = "../gix-object" }
gix-path = { version = "^0.10.20", path = "../gix-path", optional = true }
gix-date = { version = "^0.10.5", path = "../gix-date" }

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

Expand Down
2 changes: 1 addition & 1 deletion gix-features/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ gix-utils = { version = "^0.3.0", path = "../gix-utils", optional = true }

# 'parallel' feature
crossbeam-channel = { version = "0.5.15", optional = true }
parking_lot = { version = "0.12.4", default-features = false, optional = true }
parking_lot = { version = "0.12.5", default-features = false, optional = true }

walkdir = { version = "2.3.2", optional = true } # used when parallel is off

Expand Down
2 changes: 1 addition & 1 deletion gix-hashtable/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ rust-version = "1.70"
doctest = false

[dependencies]
parking_lot = "0.12.4"
parking_lot = "0.12.5"
hashbrown = { version = "0.16.0", default-features = false, features = ["inline-more"] }
gix-hash = { version = "^0.19.0", path = "../gix-hash" }
2 changes: 1 addition & 1 deletion gix-odb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ serde = { version = "1.0.114", optional = true, default-features = false, featur

tempfile = "3.23.0"
thiserror = "2.0.17"
parking_lot = { version = "0.12.4" }
parking_lot = { version = "0.12.5" }
arc-swap = "1.5.0"

document-features = { version = "0.2.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion gix-pack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ gix-diff = { version = "^0.53.0", path = "../gix-diff", default-features = false

memmap2 = "0.9.7"
smallvec = "1.15.1"
parking_lot = { version = "0.12.4", default-features = false, optional = true }
parking_lot = { version = "0.12.5", default-features = false, optional = true }
thiserror = "2.0.17"

# for caching
Expand Down
2 changes: 1 addition & 1 deletion gix-path/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ gix-testtools = { path = "../tests/tools" }
serial_test = { version = "3.1.0", default-features = false }

[target.'cfg(windows)'.dev-dependencies]
windows = { version = "0.62.1", features = [
windows = { version = "0.62.2", features = [
"Win32_System_Com",
"Win32_System_Threading",
"Win32_UI_Shell",
Expand Down
2 changes: 1 addition & 1 deletion gix-prompt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ thiserror = "2.0.17"

[target.'cfg(unix)'.dependencies]
rustix = { version = "1.1.2", features = ["termios"] }
parking_lot = "0.12.4"
parking_lot = "0.12.5"

[dev-dependencies]
gix-testtools = { path = "../tests/tools" }
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.176"

[target.'cfg(windows)'.dependencies]
gix-path = { version = "^0.10.20", path = "../gix-path" }
windows-sys = { version = "0.61.1", features = [
windows-sys = { version = "0.61.2", features = [
"Win32_Foundation",
"Win32_Security_Authorization",
"Win32_Storage_FileSystem",
Expand Down
2 changes: 1 addition & 1 deletion gix-tempfile/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ test = true

[dependencies]
gix-fs = { version = "^0.16.0", path = "../gix-fs" }
parking_lot = "0.12.4"
parking_lot = "0.12.5"
dashmap = { version = "6.0.1", optional = true }
once_cell = { version = "1.21.3", default-features = false, features = ["race", "std"] }
tempfile = "3.23.0"
Expand Down
2 changes: 1 addition & 1 deletion gix-worktree-stream/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ gix-fs = { version = "^0.16.1", path = "../gix-fs" }
gix-path = { version = "^0.10.20", path = "../gix-path" }

thiserror = "2.0.17"
parking_lot = "0.12.4"
parking_lot = "0.12.5"

[dev-dependencies]
gix-testtools = { path = "../tests/tools" }
Expand Down
2 changes: 1 addition & 1 deletion gix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ regex = { version = "1.11.3", optional = true, default-features = false, feature
] }

# for `interrupt` feature
parking_lot = { version = "0.12.4", optional = true }
parking_lot = { version = "0.12.5", optional = true }

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

Expand Down
2 changes: 1 addition & 1 deletion tests/tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ crc = "3.3.0"
once_cell = "1.21.3"
tempfile = "3.23.0"
fs_extra = "1.2.0"
parking_lot = { version = "0.12.4" }
parking_lot = { version = "0.12.5" }
is_ci = "1.1.1"
io-close = "0.3.7"
tar = { version = "0.4.38", default-features = false }
Expand Down
Loading