Bump crossbeam-channel from 0.5.14 to 0.5.15 (#7734)

* Bump crossbeam-channel from 0.5.14 to 0.5.15

Bumps [crossbeam-channel](https://github.com/crossbeam-rs/crossbeam) from 0.5.14 to 0.5.15.
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases)
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md)
- [Commits](https://github.com/crossbeam-rs/crossbeam/compare/crossbeam-channel-0.5.14...crossbeam-channel-0.5.15)

---
updated-dependencies:
- dependency-name: crossbeam-channel
  dependency-version: 0.5.15
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

* try to prevent clippy issues

Signed-off-by: Anton-4 <17049058+Anton-4@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Anton-4 <17049058+Anton-4@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Anton-4 <17049058+Anton-4@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2025-04-11 17:43:24 +02:00 committed by GitHub
parent 989eee70dd
commit d056a5dad2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View file

@ -25,10 +25,10 @@ jobs:
run: nix develop -c cargo fmt --all -- --check
- name: check code style with clippy
run: nix develop -c cargo clippy -j 2 --workspace --tests -- --deny warnings
run: nix develop -c cargo clippy -j 1 --workspace --tests -- --deny warnings
- name: check code style with clippy --release
run: nix develop -c cargo clippy -j 2 --workspace --tests --release -- --deny warnings
run: nix develop -c cargo clippy -j 1 --workspace --tests --release -- --deny warnings
- name: test building default.nix
run: nix-build

4
Cargo.lock generated
View file

@ -652,9 +652,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",
]