Skip to content

Bump the cargo group across 1 directory with 40 updates #39

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 3 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
414 changes: 181 additions & 233 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
2 changes: 1 addition & 1 deletion gix-archive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ gix-date = { version = "^0.10.2", path = "../gix-date" }

flate2 = { version = "1.1.1", optional = true, default-features = false, features = ["zlib-rs"] }
zip = { version = "3.0.0", optional = true, default-features = false, features = ["deflate"] }
jiff = { version = "0.2.12", default-features = false, features = ["std"] }
jiff = { version = "0.2.14", default-features = false, features = ["std"] }

thiserror = "2.0.0"
bstr = { version = "1.12.0", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions 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.1", 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 All @@ -38,7 +38,7 @@ once_cell = "1.21.3"
document-features = { version = "0.2.0", optional = true }

[dev-dependencies]
criterion = "0.5.1"
criterion = "0.6.0"

[[bench]]
name = "large_config_file"
Expand Down
3 changes: 2 additions & 1 deletion gix-config/benches/large_config_file.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use criterion::{black_box, criterion_group, criterion_main, Criterion};
use criterion::{criterion_group, criterion_main, Criterion};
use gix_config::{parse::Events, File};
use std::hint::black_box;

fn gix_config(c: &mut Criterion) {
c.bench_function("GitConfig large config file", |b| {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ pub fn assert_section_value(
None => None,
},
"gix-config disagrees with the expected value, {} for debugging",
env.tempdir.into_path().display()
env.tempdir.keep().display()
);
assure_git_agrees(expected, env)
}
Expand Down Expand Up @@ -173,7 +173,7 @@ fn assure_git_agrees(expected: Option<Value>, env: GitEnv) -> crate::Result {
expected.is_some(),
"{:?}, {} for debugging",
output,
env.tempdir.into_path().display()
env.tempdir.keep().display()
);
let git_output: BString = output.stdout.trim_end().into();
assert_eq!(
Expand All @@ -184,7 +184,7 @@ fn assure_git_agrees(expected: Option<Value>, env: GitEnv) -> crate::Result {
None => "",
},
"git disagrees with gix-config, {:?} for debugging",
env.tempdir.into_path()
env.tempdir.keep()
);
Ok(())
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ value = branch-override-by-include
dir,
gix_testtools::tempfile::TempDir::new().expect("substitute can be created"),
);
dir.into_path()
dir.keep()
}
);

Expand All @@ -290,7 +290,7 @@ fn assure_git_agrees(expected: Value, dir: &mut gix_testtools::tempfile::TempDir
dir,
gix_testtools::tempfile::TempDir::new().expect("substitute can be created"),
);
dir.into_path()
dir.keep()
};
assert!(
output.status.success(),
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.14"
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"
4 changes: 2 additions & 2 deletions 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 All @@ -67,7 +67,7 @@ serde = { version = "1.0.114", optional = true, default-features = false, featur
document-features = { version = "0.2.0", optional = true }

[dev-dependencies]
criterion = "0.5.1"
criterion = "0.6.0"
pretty_assertions = "1.0.0"
gix-testtools = { path = "../tests/tools" }
gix-odb = { path = "../gix-odb" }
Expand Down
3 changes: 2 additions & 1 deletion gix-object/benches/decode_objects.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use criterion::{black_box, criterion_group, criterion_main, Criterion};
use criterion::{criterion_group, criterion_main, Criterion};
use std::hint::black_box;

fn parse_commit(c: &mut Criterion) {
c.bench_function("CommitRef(sig)", |b| {
Expand Down
4 changes: 2 additions & 2 deletions gix-object/benches/edit_tree.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::{cell::RefCell, rc::Rc};
use std::{cell::RefCell, hint::black_box, rc::Rc};

use criterion::{black_box, criterion_group, criterion_main, Criterion, Throughput};
use criterion::{criterion_group, criterion_main, Criterion, Throughput};
use gix_hash::ObjectId;
use gix_hashtable::hash_map::Entry;
use gix_object::{tree, tree::EntryKind, Tree, WriteTo};
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