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
351 changes: 200 additions & 151 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions gitoxide-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ serde = { version = "1.0.114", optional = true, default-features = false, featur
anyhow = "1.0.100"
thiserror = "2.0.17"
bytesize = "2.3.1"
tempfile = "3.23.0"
tempfile = "3.24.0"

# for async-client
async-trait = { version = "0.1.51", optional = true }
Expand All @@ -77,17 +77,17 @@ gix-url = { version = "^0.34.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.2.2", 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"] }
rusqlite = { version = "0.38.0", optional = true, features = ["bundled"] }

# for 'corpus'
parking_lot = { version = "0.12.4", optional = true }
sysinfo = { version = "0.37.2", optional = true, default-features = false, features = ["system"] }
serde_json = { version = "1.0.145", optional = true }
serde_json = { version = "1.0.148", optional = true }
tracing-forest = { version = "0.2.0", features = ["serde"], optional = true }
tracing-subscriber = { version = "0.3.22", optional = true }
tracing = { version = "0.1.43", 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 @@ -28,7 +28,7 @@ bstr = { version = "1.12.0", default-features = false, features = [
"unicode",
] }
winnow = { version = "0.7.14", features = ["simd"] }
itoa = "1.0.1"
itoa = "1.0.17"
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 @@ -33,8 +33,8 @@ gix-path = { version = "^0.10.22", path = "../gix-path", optional = true }
gix-date = { version = "^0.12.0", path = "../gix-date" }

flate2 = { version = "1.1.1", optional = true, default-features = false, features = ["zlib-rs"] }
rawzip = { version = "0.4.2", optional = true }
jiff = { version = "0.2.15", default-features = false, features = ["std"] }
rawzip = { version = "0.4.3", optional = true }
jiff = { version = "0.2.17", default-features = false, features = ["std"] }

thiserror = "2.0.17"
bstr = { version = "1.12.0", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion gix-command/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ gix-path = { version = "^0.10.21", path = "../gix-path" }
gix-quote = { version = "^0.6.1", path = "../gix-quote" }

bstr = { version = "1.12.0", default-features = false, features = ["std", "unicode"] }
shell-words = "1.0"
shell-words = "1.1"

[dev-dependencies]
gix-testtools = { path = "../tests/tools" }
4 changes: 2 additions & 2 deletions gix-date/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ serde = ["dep:serde", "bstr/serde"]
[dependencies]
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.15"
itoa = "1.0.17"
jiff = "0.2.17"
thiserror = "2.0.17"
# 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-diff/tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ gix-filter = { path = "../../gix-filter" }
gix-traverse = { path = "../../gix-traverse" }
gix-testtools = { path = "../../tests/tools" }

insta = "1.44.3"
insta = "1.45.1"
shell-words = "1"
pretty_assertions = "1.4.0"
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.23.0"
tempfile = "3.24.0"
2 changes: 1 addition & 1 deletion gix-features/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.178" }

[dev-dependencies]
bstr = { version = "1.12.0", default-features = false }
Expand Down
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.23.0"
tempfile = "3.24.0"
4 changes: 2 additions & 2 deletions gix-index/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ serde = { version = "1.0.114", optional = true, default-features = false, featur
"derive",
] }
smallvec = "1.15.1"
itoa = "1.0.3"
itoa = "1.0.17"
bitflags = "2"

document-features = { version = "0.2.0", optional = true }
Expand All @@ -55,7 +55,7 @@ rustix = { version = "1.1.2", default-features = false, features = [
"std",
"fs",
] }
libc = { version = "0.2.176" }
libc = { version = "0.2.178" }

[dev-dependencies]
gix-testtools = { path = "../tests/tools" }
Expand Down
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 = "^20.0.0", default-features = false, path = "../gix-t
thiserror = "2.0.17"

[dev-dependencies]
tempfile = "3.23.0"
tempfile = "3.24.0"
2 changes: 1 addition & 1 deletion gix-object/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ gix-date = { version = "^0.12.0", path = "../gix-date" }
gix-path = { version = "^0.10.22", path = "../gix-path" }
gix-utils = { version = "^0.3.1", path = "../gix-utils" }

itoa = "1.0.1"
itoa = "1.0.17"
thiserror = "2.0.17"
bstr = { version = "1.12.0", default-features = false, features = [
"std",
Expand Down
4 changes: 2 additions & 2 deletions gix-odb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ gix-pack = { version = "^0.64.0", path = "../gix-pack", default-features = false
gix-fs = { version = "^0.18.1", path = "../gix-fs" }
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }

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

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

Expand Down
2 changes: 1 addition & 1 deletion gix-ref/tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ gix-hash = { path = "../../gix-hash" }
gix-validate = { path = "../../gix-validate" }
gix-lock = { path = "../../gix-lock" }
gix-object = { path = "../../gix-object" }
insta = "1.44.3"
insta = "1.45.1"
2 changes: 1 addition & 1 deletion gix-refspec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ smallvec = "1.15.1"

[dev-dependencies]
gix-testtools = { path = "../tests/tools" }
insta = "1.44.3"
insta = "1.45.1"
4 changes: 2 additions & 2 deletions 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.176"
libc = "0.2.178"

[target.'cfg(windows)'.dependencies]
gix-path = { version = "^0.10.21", path = "../gix-path" }
Expand All @@ -41,7 +41,7 @@ windows-sys = { version = "0.61.1", features = [
] }

[dev-dependencies]
tempfile = "3.23.0"
tempfile = "3.24.0"

[package.metadata.docs.rs]
all-features = true
Expand Down
8 changes: 4 additions & 4 deletions gix-tempfile/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ test = true
gix-fs = { version = "^0.18.0", path = "../gix-fs" }
parking_lot = "0.12.4"
dashmap = { version = "6.0.1", optional = true }
tempfile = "3.23.0"
tempfile = "3.24.0"

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

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

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.178", 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.35", optional = true }
tracing-core = { version = "0.1.36", 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 @@ -111,7 +111,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.28", 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/tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ name = "traverse"
path = "traverse/main.rs"

[dev-dependencies]
insta = "1.44.3"
insta = "1.45.1"
gix-traverse = { path = ".." }
gix-testtools = { path = "../../tests/tools" }
gix-odb = { path = "../../gix-odb" }
Expand Down
4 changes: 2 additions & 2 deletions gix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ gix-transport = { version = "^0.52.0", path = "../gix-transport", optional = tru

# Just to get the progress-tree feature
prodash = { version = "30.0.1", optional = true, features = ["progress-tree"] }
signal-hook = { version = "0.3.18", default-features = false, optional = true }
signal-hook = { version = "0.4.1", default-features = false, optional = true }
thiserror = "2.0.17"
serde = { version = "1.0.114", optional = true, default-features = false, features = [
"derive",
Expand Down Expand Up @@ -410,7 +410,7 @@ walkdir = "2.3.2"
serial_test = { version = "3.1.0", default-features = false }
async-std = { version = "1.12.0", features = ["attributes"] }
termtree = "0.5.1"
insta = "1.44.3"
insta = "1.45.1"

[package.metadata.docs.rs]
features = [
Expand Down
2 changes: 1 addition & 1 deletion tests/tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ winnow = { version = "0.7.14", features = ["simd"] }
fastrand = "2.0.0"
bstr = { version = "1.12.0", default-features = false }
crc = "3.4.0"
tempfile = "3.23.0"
tempfile = "3.24.0"
fs_extra = "1.2.0"
parking_lot = { version = "0.12.4" }
is_ci = "1.1.1"
Expand Down
Loading