Skip to content

Bump the cargo group across 1 directory with 21 updates #18

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

Closed
wants to merge 5 commits into from
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
301 changes: 186 additions & 115 deletions Cargo.lock

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -171,11 +171,11 @@ gitoxide-core = { version = "^0.46.0", path = "gitoxide-core" }
gix-features = { version = "^0.41.1", path = "gix-features" }
gix = { version = "^0.71.0", path = "gix", default-features = false }

clap = { version = "4.1.1", features = ["derive", "cargo"] }
clap_complete = "4.4.3"
clap = { version = "4.5.35", features = ["derive", "cargo"] }
clap_complete = "4.5.47"
prodash = { version = "29.0.1", optional = true }
is-terminal = { version = "0.4.0", optional = true }
env_logger = { version = "0.10.0", default-features = false }
env_logger = { version = "0.11.8", default-features = false }
crosstermion = { version = "0.14.0", optional = true, default-features = false }
futures-lite = { version = "2.1.0", optional = true }

Expand All @@ -185,12 +185,12 @@ tracing-subscriber = { version = "0.3.17", optional = true }
tracing = { version = "0.1.37", optional = true }

# for config-tree
terminal_size = "0.3.0"
terminal_size = "0.4.2"

# Avoid pre-compiled binaries, see https://github.com/serde-rs/serde/issues/2538 and https://github.com/serde-rs/serde/pull/2590
serde_derive = ">=1.0.185"

once_cell = "1.18.0"
once_cell = "1.21.3"
document-features = { version = "0.2.0", optional = true }
[profile.dev.package]
insta.opt-level = 3
Expand Down
12 changes: 6 additions & 6 deletions gitoxide-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ gix-fsck = { version = "^0.10.0", path = "../gix-fsck" }
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
anyhow = "1.0.42"
thiserror = "2.0.0"
bytesize = "1.0.1"
tempfile = "3.1.0"
bytesize = "2.0.1"
tempfile = "3.19.1"

# for async-client
async-trait = { version = "0.1.51", optional = true }
Expand All @@ -74,16 +74,16 @@ gix-url = { version = "^0.30.0", path = "../gix-url", optional = true }
jwalk = { version = "0.8.0", optional = true }

# for 'hours'
fs-err = { version = "2.6.0", optional = true }
fs-err = { version = "3.1.0", optional = true }
crossbeam-channel = { version = "0.5.15", optional = true }
smallvec = { version = "1.10.0", optional = true }
smallvec = { version = "1.15.0", optional = true }

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

# for 'corpus'
parking_lot = { version = "0.12.1", optional = true }
sysinfo = { version = "0.31.2", optional = true, default-features = false, features = ["system"] }
sysinfo = { version = "0.34.2", 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
7 changes: 4 additions & 3 deletions gitoxide-core/src/corpus/db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ pub fn create(path: impl AsRef<std::path::Path>) -> anyhow::Result<rusqlite::Con
CREATE TABLE if not exists task(
id integer PRIMARY KEY,
short_name UNIQUE, -- the unique and permanent identifier for the task
description text UNIQUE -- the descriptive name of the task, it can be changed at will
description text UNIQUE -- the descriptive name of the task, it can be changed at will
)
"#,
)?;
Expand Down Expand Up @@ -148,8 +148,9 @@ pub fn create(path: impl AsRef<std::path::Path>) -> anyhow::Result<rusqlite::Con
/// Utilities
impl Engine {
pub(crate) fn runner_id_or_insert(&self) -> anyhow::Result<Id> {
let sys =
sysinfo::System::new_with_specifics(RefreshKind::new().with_cpu(CpuRefreshKind::new().with_frequency()));
let sys = sysinfo::System::new_with_specifics(
RefreshKind::nothing().with_cpu(CpuRefreshKind::nothing().with_frequency()),
);
let cpu = &sys.cpus()[0];
let vendor = Some(cpu.vendor_id().to_owned());
let host = sysinfo::System::host_name();
Expand Down
8 changes: 4 additions & 4 deletions gitoxide-core/src/pack/verify.rs
Original file line number Diff line number Diff line change
Expand Up @@ -236,10 +236,10 @@ fn print_statistics(out: &mut impl io::Write, stats: &index::traverse::Statistic
#[rustfmt::skip]
writeln!(
out, "\t{:<width$}: {}\n\t{:<width$}: {}\n\t{:<width$}: {}\n\t{:<width$}: {}",
"compressed entries size", ByteSize(stats.total_compressed_entries_size),
"decompressed entries size", ByteSize(stats.total_decompressed_entries_size),
"total object size", ByteSize(stats.total_object_size),
"pack size", ByteSize(stats.pack_size),
"compressed entries size", ByteSize(stats.total_compressed_entries_size).display().si(),
"decompressed entries size", ByteSize(stats.total_decompressed_entries_size).display().si(),
"total object size", ByteSize(stats.total_object_size).display().si(),
"pack size", ByteSize(stats.pack_size).display().si(),
width = width
)?;
#[rustfmt::skip]
Expand Down
4 changes: 2 additions & 2 deletions gix-actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ gix-date = { version = "^0.9.4", path = "../gix-date" }
gix-utils = { version = "^0.2.0", path = "../gix-utils" }

thiserror = "2.0.0"
bstr = { version = "1.3.0", default-features = false, features = [
bstr = { version = "1.12.0", default-features = false, features = [
"std",
"unicode",
] }
winnow = { version = "0.7.0", features = ["simd"] }
winnow = { version = "0.7.6", features = ["simd"] }
itoa = "1.0.1"
serde = { version = "1.0.114", optional = true, default-features = false, features = [
"derive",
Expand Down
8 changes: 4 additions & 4 deletions gix-archive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ gix-object = { version = "^0.48.0", path = "../gix-object" }
gix-path = { version = "^0.10.15", path = "../gix-path", optional = true }
gix-date = { version = "^0.9.4", path = "../gix-date" }

flate2 = { version = "1.0.33", optional = true }
zip = { version = "2.3.0", optional = true, default-features = false, features = [
flate2 = { version = "1.1.1", optional = true }
zip = { version = "2.6.1", optional = true, default-features = false, features = [
"deflate",
] }
jiff = { version = "0.2.0", default-features = false, features = ["std"] }
jiff = { version = "0.2.6", default-features = false, features = ["std"] }

thiserror = "2.0.0"
bstr = { version = "1.5.0", default-features = false }
bstr = { version = "1.12.0", default-features = false }

tar = { version = "0.4.38", optional = true }

Expand Down
4 changes: 2 additions & 2 deletions gix-attributes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ gix-quote = { version = "^0.5.0", path = "../gix-quote" }
gix-glob = { version = "^0.19.0", path = "../gix-glob" }
gix-trace = { version = "^0.1.12", path = "../gix-trace" }

bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"] }
smallvec = "1.10.0"
bstr = { version = "1.12.0", default-features = false, features = ["std", "unicode"] }
smallvec = "1.15.0"
kstring = "2.0.0"
unicode-bom = { version = "2.0.3" }
thiserror = "2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion gix-blame/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ gix-hash = { version = "^0.17.0", path = "../gix-hash" }
gix-worktree = { version = "^0.40.0", path = "../gix-worktree", default-features = false, features = ["attributes"] }
gix-traverse = { version = "^0.45.0", path = "../gix-traverse" }

smallvec = "1.10.0"
smallvec = "1.15.0"
thiserror = "2.0.0"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions gix-command/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ gix-trace = { version = "^0.1.12", path = "../gix-trace" }
gix-path = { version = "^0.10.15", path = "../gix-path" }
gix-quote = { version = "^0.5.0", path = "../gix-quote" }

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

[dev-dependencies]
gix-testtools = { path = "../tests/tools" }
once_cell = "1.17.1"
once_cell = "1.21.3"
2 changes: 1 addition & 1 deletion gix-commitgraph/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ serde = ["dep:serde", "gix-hash/serde", "bstr/serde"]
gix-hash = { version = "^0.17.0", path = "../gix-hash" }
gix-chunk = { version = "^0.4.11", path = "../gix-chunk" }

bstr = { version = "1.3.0", default-features = false, features = ["std"] }
bstr = { version = "1.12.0", default-features = false, features = ["std"] }
memmap2 = "0.9.0"
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-value/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ serde = ["dep:serde", "bstr/serde"]
gix-path = { version = "^0.10.15", path = "../gix-path" }

thiserror = "2.0.0"
bstr = { version = "1.0.1", default-features = false, features = ["std"] }
bstr = { version = "1.12.0", default-features = false, features = ["std"] }
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
bitflags = "2"

Expand Down
8 changes: 4 additions & 4 deletions gix-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ gix-sec = { version = "^0.10.12", path = "../gix-sec" }
gix-ref = { version = "^0.51.0", path = "../gix-ref" }
gix-glob = { version = "^0.19.0", path = "../gix-glob" }

winnow = { version = "0.7.0", features = ["simd"] }
winnow = { version = "0.7.6", features = ["simd"] }
memchr = "2"
thiserror = "2.0.0"
unicode-bom = { version = "2.0.3" }
bstr = { version = "1.3.0", default-features = false, features = ["std"] }
bstr = { version = "1.12.0", default-features = false, features = ["std"] }
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
smallvec = "1.9.0"
once_cell = "1.14.0"
smallvec = "1.15.0"
once_cell = "1.21.3"

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

Expand Down
4 changes: 2 additions & 2 deletions gix-config/tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ gix-ref = { path = "../../gix-ref" }
gix-path = { path = "../../gix-path" }
gix-sec = { path = "../../gix-sec" }
serial_test = { version = "3.1.0", default-features = false }
bstr = { version = "1.3.0", default-features = false, features = ["std"] }
bstr = { version = "1.12.0", default-features = false, features = ["std"] }

bytesize = "1.3.0"
bytesize = "2.0.1"
cap = { version = "0.1.2", features = ["stats"] }
4 changes: 2 additions & 2 deletions gix-credentials/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ gix-trace = { version = "^0.1.12", path = "../gix-trace" }

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



Expand All @@ -38,7 +38,7 @@ document-features = { version = "0.2.1", optional = true }
[dev-dependencies]
gix-testtools = { path = "../tests/tools" }
gix-sec = { path = "../gix-sec" }
once_cell = "1.19.0"
once_cell = "1.21.3"

[package.metadata.docs.rs]
all-features = true
Expand Down
6 changes: 3 additions & 3 deletions gix-date/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@ doctest = false
serde = ["dep:serde", "bstr/serde"]

[dependencies]
bstr = { version = "1.3.0", default-features = false, features = ["std"] }
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.0"
jiff = "0.2.6"
thiserror = "2.0.0"

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

[dev-dependencies]
gix-hash = { path = "../gix-hash" }
gix-testtools = { path = "../tests/tools" }
once_cell = "1.12.0"
once_cell = "1.21.3"
pretty_assertions = "1.4.1"

[package.metadata.docs.rs]
Expand Down
2 changes: 1 addition & 1 deletion gix-diff/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ thiserror = "2.0.0"
imara-diff = { version = "0.1.7", optional = true }
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
getrandom = { version = "0.2.8", optional = true, default-features = false, features = ["js"] }
bstr = { version = "1.5.0", default-features = false }
bstr = { version = "1.12.0", default-features = false }

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

Expand Down
2 changes: 1 addition & 1 deletion gix-dir/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ gix-object = { version = "^0.48.0", path = "../gix-object" }
gix-ignore = { version = "^0.14.0", path = "../gix-ignore" }
gix-utils = { version = "^0.2.0", path = "../gix-utils", features = ["bstr"] }

bstr = { version = "1.5.0", default-features = false }
bstr = { version = "1.12.0", default-features = false }
thiserror = "2.0.0"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions gix-discover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ gix-ref = { version = "^0.51.0", path = "../gix-ref" }
gix-hash = { version = "^0.17.0", path = "../gix-hash" }
gix-fs = { version = "^0.14.0", path = "../gix-fs" }

bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"] }
bstr = { version = "1.12.0", default-features = false, features = ["std", "unicode"] }
thiserror = "2.0.0"

[target.'cfg(windows)'.dependencies]
Expand All @@ -36,4 +36,4 @@ is_ci = "1.1.1"
defer = "0.2.1"

[target.'cfg(any(unix, windows))'.dev-dependencies]
tempfile = "3.2.0"
tempfile = "3.19.1"
8 changes: 4 additions & 4 deletions gix-features/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -120,24 +120,24 @@ crc32fast = { version = "1.2.1", optional = true }

# progress
prodash = { version = "29.0.1", optional = true }
bytesize = { version = "1.0.1", optional = true }
bytesize = { version = "2.0.1", optional = true }

# pipe
bytes = { version = "1.0.0", optional = true }

# zlib module
flate2 = { version = "1.1.0", optional = true, default-features = false }
flate2 = { version = "1.1.1", optional = true, default-features = false }
thiserror = { version = "2.0.0", optional = true }

once_cell = { version = "1.13.0", optional = true }
once_cell = { version = "1.21.3", optional = true }

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

[target.'cfg(unix)'.dependencies]
libc = { version = "0.2.119" }

[dev-dependencies]
bstr = { version = "1.3.0", default-features = false }
bstr = { version = "1.12.0", default-features = false }

[package.metadata.docs.rs]
all-features = true
Expand Down
4 changes: 2 additions & 2 deletions gix-filter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ gix-packetline-blocking = { version = "^0.18.3", path = "../gix-packetline-block
gix-attributes = { version = "^0.25.0", path = "../gix-attributes" }

encoding_rs = "0.8.32"
bstr = { version = "1.5.0", default-features = false, features = ["std"] }
bstr = { version = "1.12.0", default-features = false, features = ["std"] }
thiserror = "2.0.0"
smallvec = "1.10.0"
smallvec = "1.15.0"


[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions gix-fs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ doctest = false
serde = ["dep:serde"]

[dependencies]
bstr = "1.5.0"
bstr = "1.12.0"
gix-path = { version = "^0.10.15", path = "../gix-path" }
gix-features = { version = "^0.41.1", path = "../gix-features", features = ["fs-read-dir"] }
gix-utils = { version = "^0.2.0", path = "../gix-utils" }
Expand All @@ -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.5.0"
tempfile = "3.19.1"
2 changes: 1 addition & 1 deletion gix-glob/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ serde = ["dep:serde", "bstr/serde", "bitflags/serde"]
[dependencies]
gix-path = { version = "^0.10.15", path = "../gix-path" }
gix-features = { version = "^0.41.1", path = "../gix-features" }
bstr = { version = "1.3.0", default-features = false, features = ["std"] }
bstr = { version = "1.12.0", default-features = false, features = ["std"] }
bitflags = "2"
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }

Expand Down
2 changes: 1 addition & 1 deletion gix-hash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ serde = ["dep:serde"]
gix-features = { version = "^0.41.1", path = "../gix-features", features = ["progress"] }

thiserror = "2.0.0"
faster-hex = { version = "0.9.0" }
faster-hex = { version = "0.10.0" }
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
sha1-checked = { version = "0.10.0", default-features = false }

Expand Down
2 changes: 1 addition & 1 deletion gix-ignore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ gix-glob = { version = "^0.19.0", path = "../gix-glob" }
gix-path = { version = "^0.10.15", path = "../gix-path" }
gix-trace = { version = "^0.1.12", path = "../gix-trace" }

bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"] }
bstr = { version = "1.12.0", default-features = false, features = ["std", "unicode"] }
unicode-bom = { version = "2.0.3" }
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }

Expand Down
6 changes: 3 additions & 3 deletions gix-index/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,19 @@ fnv = "1.0.7"
thiserror = "2.0.0"
memmap2 = "0.9.0"
filetime = "0.2.15"
bstr = { version = "1.3.0", default-features = false }
bstr = { version = "1.12.0", default-features = false }

serde = { version = "1.0.114", optional = true, default-features = false, features = [
"derive",
] }
smallvec = "1.7.0"
smallvec = "1.15.0"
itoa = "1.0.3"
bitflags = "2"

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

[target.'cfg(not(windows))'.dependencies]
rustix = { version = "0.38.20", default-features = false, features = [
rustix = { version = "1.0.3", default-features = false, features = [
"std",
"fs",
] }
Expand Down
2 changes: 1 addition & 1 deletion gix-index/tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ gix-odb = { path = "../../gix-odb" }
gix-object = { path = "../../gix-object" }
gix-hash = { path = "../../gix-hash" }
filetime = "0.2.15"
bstr = { version = "1.3.0", default-features = false }
bstr = { version = "1.12.0", default-features = false }
Loading
Loading