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
361 changes: 154 additions & 207 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
4 changes: 2 additions & 2 deletions gix-archive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ 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"] }
zip = { version = "5.1.1", optional = true, default-features = false, features = ["deflate-flate2"] }
flate2 = { version = "1.1.4", optional = true, default-features = false, features = ["zlib-rs"] }
zip = { version = "6.0.0", optional = true, default-features = false, features = ["deflate-flate2"] }
jiff = { version = "0.2.15", default-features = false, features = ["std"] }

thiserror = "2.0.17"
Expand Down
4 changes: 2 additions & 2 deletions gix-features/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,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 All @@ -118,7 +118,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.176" }
libc = { version = "0.2.177" }

[dev-dependencies]
bstr = { version = "1.12.0", default-features = false }
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.82"
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-index/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ rustix = { version = "1.1.2", default-features = false, features = [
"std",
"fs",
] }
libc = { version = "0.2.176" }
libc = { version = "0.2.177" }

[dev-dependencies]
gix-testtools = { path = "../tests/tools" }
Expand Down
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 @@ -28,7 +28,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
4 changes: 2 additions & 2 deletions gix-sec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ bitflags = "2"
document-features = { version = "0.2.1", optional = true }

[target.'cfg(not(windows))'.dependencies]
libc = "0.2.176"
libc = "0.2.177"

[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
4 changes: 2 additions & 2 deletions 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 }
tempfile = "3.23.0"

Expand All @@ -50,7 +50,7 @@ signals = ["dep:signal-hook", "dep:signal-hook-registry"]
hp-hashmap = ["dep:dashmap"]

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

[package.metadata.docs.rs]
all-features = 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.22", optional = true, default-features = false, features = ["blocking", "charset", "http2", "macos-system-configuration"] }
reqwest = { version = "0.12.24", 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-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
4 changes: 2 additions & 2 deletions gix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -384,12 +384,12 @@ async-std = { version = "1.12.0", optional = true }
##
## If disabled, the text will be search verbatim in any portion of the commit message, similar to
## how a simple unanchored regex of only 'normal' characters would work.
regex = { version = "1.11.3", optional = true, default-features = false, features = [
regex = { version = "1.12.2", optional = true, default-features = false, features = [
"std",
] }

# 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
4 changes: 2 additions & 2 deletions tests/it/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ path = "src/main.rs"

[dependencies]
anyhow = "1.0.100"
clap = { version = "4.5.48", features = ["derive"] }
clap = { version = "4.5.49", features = ["derive"] }
gix = { version = "^0.73.0", path = "../../gix", default-features = false, features = ["attributes", "blame", "blob-diff", "revision"] }
regex = { version = "1.11.3", default-features = false, features = ["std"] }
regex = { version = "1.12.2", 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 @@ -37,7 +37,7 @@ bstr = { version = "1.12.0", default-features = false }
crc = "3.3.0"
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