diff --git a/Cargo.lock b/Cargo.lock index 3a54ce74272..31b24c2c3b7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -762,9 +762,9 @@ dependencies = [ [[package]] name = "crossbeam-channel" -version = "0.5.14" +version = "0.5.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471" +checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" dependencies = [ "crossbeam-utils", ] @@ -3654,7 +3654,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" dependencies = [ "cfg-if", - "windows-targets 0.48.5", + "windows-targets 0.52.6", ] [[package]] diff --git a/gitoxide-core/Cargo.toml b/gitoxide-core/Cargo.toml index 6a255795d4d..100488eee07 100644 --- a/gitoxide-core/Cargo.toml +++ b/gitoxide-core/Cargo.toml @@ -75,7 +75,7 @@ jwalk = { version = "0.8.0", optional = true } # for 'hours' fs-err = { version = "2.6.0", optional = true } -crossbeam-channel = { version = "0.5.6", optional = true } +crossbeam-channel = { version = "0.5.15", optional = true } smallvec = { version = "1.10.0", optional = true } # for 'query' and 'corpus' diff --git a/gix-features/Cargo.toml b/gix-features/Cargo.toml index e38432028ee..aec82d7e8ea 100644 --- a/gix-features/Cargo.toml +++ b/gix-features/Cargo.toml @@ -110,7 +110,7 @@ gix-path = { version = "^0.10.15", path = "../gix-path", optional = true } gix-utils = { version = "^0.2.0", path = "../gix-utils", optional = true } # 'parallel' feature -crossbeam-channel = { version = "0.5.0", optional = true } +crossbeam-channel = { version = "0.5.15", optional = true } parking_lot = { version = "0.12.0", default-features = false, optional = true } walkdir = { version = "2.3.2", optional = true } # used when parallel is off diff --git a/gix-fs/Cargo.toml b/gix-fs/Cargo.toml index fda6c347bab..8c195ced6ab 100644 --- a/gix-fs/Cargo.toml +++ b/gix-fs/Cargo.toml @@ -30,6 +30,6 @@ serde = { version = "1.0.114", optional = true, default-features = false, featur fastrand = { version = "2.1.0", default-features = false, features = ["std"] } [dev-dependencies] -crossbeam-channel = "0.5.0" +crossbeam-channel = "0.5.15" is_ci = "1.1.1" tempfile = "3.5.0" diff --git a/gix-odb/tests/Cargo.toml b/gix-odb/tests/Cargo.toml index 7c8b8e560ad..770f751a728 100644 --- a/gix-odb/tests/Cargo.toml +++ b/gix-odb/tests/Cargo.toml @@ -31,4 +31,4 @@ gix-actor = { path = "../../gix-actor" } pretty_assertions = "1.0.0" filetime = "0.2.15" maplit = "1.0.2" -crossbeam-channel = "0.5.13" +crossbeam-channel = "0.5.15"