bevy
bevy copied to clipboard
Update async-broadcast requirement from 0.5 to 0.6
trafficstars
Updates the requirements on async-broadcast to permit the latest version.
Changelog
Sourced from async-broadcast's changelog.
Version 0.6.0
- Bump to event-listener v3.0.0.
- Add smol-rs logo to docs.
Version 0.5.1
- Drop
parking_lotdependency, in favor of sync primitives in std.Version 0.5.0
- API to disable waiting for active receivers (#35).
Version 0.4.1
- Drop unneeded easy-parallel dep.
- Bumb dependencies to the current versions.
- Update
parking_lotto 0.12.1.- fix incorrect documentation for
TrySendError::is_disconnected.Version 0.4.0
- Add
RecvError::Overflowedfor detecting missing messages.- Avoid overflows on 32- and 16-bit systems (#22).
- Add overflow message count.
Cloneimpl ofReceivernow properly duplicates it.- Add
Receiver::new_receiver.- Add
Receiver::new_senderandSender::new_receiver, allowing generating senders from receivers and vice versa, respectively.- Switch to
parking_lot::RwLockinstead ofstd::sync::Mutex.Version 0.3.4
- Avoid the last clone in
try_recv(#18).- Add some basic benchmarks.
Version 0.3.3
- Close channel if the last receiver to drop is inactive.
Version 0.3.2
- Fix a underflow panic (#14).
- Document difference with other broadcast APIs.
Version 0.3.1
- Channel API in InactiveReceiver (#11).
- {Sender,Receiver}::inactive_receiver_count method.
... (truncated)
Commits
92adf87Merge pull request #46 from zeenix/release-0.6bea9707Release 0.6.00a7289aMerge pull request #43 from smol-rs/notgull/evl-v3.0.08eaae73Bump to event-listener v3.0.02fe2140Merge pull request #44 from smol-rs/notgull/logo88d4dd0Add smol-rs logo1fd1c29Release 0.5.18e48658The name is Khan8f53976Merge pull request #38 from BratSinot/rem_parking_lot2546eceUse std RwLock instead of parking_lot.- See full diff in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
doesn't look like an easy update in wasm
there's this pr to fix. https://github.com/smol-rs/async-broadcast/pull/47, but it looks like it bumps event-listener to v4 too.
Superseded by #11830.