aboutsummaryrefslogtreecommitdiff
path: root/embassy-sync
Commit message (Collapse)AuthorAgeFilesLines
* embassy-sync: Update `Pipe::try_write` docsMichael Elia2025-12-141-1/+1
|
* Rustfmt for edition 2024.Dario Nieuwenhuis2025-10-0613-53/+53
|
* Edition 2024.Dario Nieuwenhuis2025-10-062-1/+2
|
* more docs fixesRobin Mueller2025-09-233-6/+4
|
* Update Rust.Dario Nieuwenhuis2025-09-221-4/+4
|
* Update manifests to satisfy new checks.Dario Nieuwenhuis2025-09-221-0/+2
|
* Remove `Sized` bound from `MutexGuard::map`Robert Zieba2025-09-122-2/+3
| | | | | | Since `MutexGuard` has `T: ?Sized`, `U` does not need to be restricted to `Sized` types. This now allows using `map` to cast from `MutexGuard<'_, M, ImplsTrait>` to `MutexGuard<'_, M, dyn Trait>`.
* ci: use devtool to build.Dario Nieuwenhuis2025-09-111-0/+2
|
* embassy-sync: Don't drop wakers in Signal::resetMatthew Tran2025-08-282-1/+2
|
* chore: prepare embassy crate releasesUlf Lilleengen2025-08-262-1/+3
|
* Read crate configs from metadata.Dario Nieuwenhuis2025-08-251-0/+5
|
* feat: add semver checks and releasing to releaserUlf Lilleengen2025-08-251-1/+2
| | | | | | | | | * List dependencies of a crate * List dependents of a crate * Perform semver-checks of a crate * Prepare a release for a crate and all dependents * Use a single release.toml for cargo-release * Add changelogs where missing
* chore: add more `Debug` impls to `embassy-sync`, particularly on `OnceLock`Curly2025-08-1919-0/+65
| | | | All tests green
* fix: prepare embassy-sync 0.7.1 releaseUlf Lilleengen2025-08-122-1/+6
| | | | * Add newtype for moved type to preserve API compat
* Merge pull request #4485 from AnthonyGrondin/feat/lazy-lock-mutUlf Lilleengen2025-08-082-0/+17
|\ | | | | | | feat(embassy-sync): Add `get_mut` for `LazyLock`
| * feat(embassy-sync): Add `get_mut` for `LazyLock`Anthony Grondin2025-07-302-0/+17
| |
* | embassy-sync: Update `MultiWakerRegistration::register` docsBrezak2025-08-011-1/+3
|/ | | | In 3081ecf301a54f8ed3d0f72350dd21f8ac9e1b18 `register` was changed to clear the buffer when it's full, but the docs weren't updated.
* Merge pull request #4385 from us-irs/some-minor-doc-fixesJames Munns2025-07-094-8/+8
|\ | | | | | | some minor documentation fixes
| * Update embassy-sync/src/pubsub/publisher.rsRobin Mueller2025-07-091-1/+1
| | | | | | Co-authored-by: James Munns <[email protected]>
| * Update embassy-sync/src/priority_channel.rsRobin Mueller2025-07-091-1/+1
| | | | | | Co-authored-by: James Munns <[email protected]>
| * Update embassy-sync/src/priority_channel.rsRobin Mueller2025-07-091-1/+1
| | | | | | Co-authored-by: James Munns <[email protected]>
| * Update embassy-sync/src/mutex.rsRobin Mueller2025-07-091-1/+1
| | | | | | Co-authored-by: James Munns <[email protected]>
| * some minor documentation fixesRobin Mueller2025-07-094-8/+8
| |
* | add embassy sync channel example for message passing between interrupt and taskRobin Mueller2025-07-091-0/+25
|/
* Update Rust nightly, stable.Dario Nieuwenhuis2025-07-041-4/+4
|
* disable ui tests in miriMelvin Wang2025-06-181-1/+1
|
* commit expected errorsMelvin Wang2025-06-184-8/+46
|
* fix missing sync boundsMelvin Wang2025-06-182-2/+7
|
* add tests illustrating the problemMelvin Wang2025-06-185-0/+41
|
* Remove futures-util where unnecessaryDániel Buga2025-06-163-4/+4
|
* Rename SendableDynamicReceiver to SendDynamicReceiverCorey Schuhen2025-05-291-7/+7
|
* docs: update changelog for embassy-syncUlf Lilleengen2025-05-281-1/+3
|
* Merge pull request #4262 from cschuhen/send_on_dynamic_channelUlf Lilleengen2025-05-281-0/+106
|\ | | | | | | Enable Sync and Send for DynamicSender and DynamicReceiver.
| * Make Sync capable versions of DynamicSender and DynamicReceiver.Corey Schuhen2025-05-281-0/+106
| | | | | | | | | | | | | | | | DynamicSender and DynamicReceiver, just seem to be a fat pointer to a Channel which is already protected by it's own Mutex already. In fact, you can share the Channel already betwen threads and create Dynamic*er's in the target threads. It should be safe to share the Dynamic*er's directly. Can only be used when Mutex M of channel supoorts Sync.
* | feat: add support for channel peekUlf Lilleengen2025-05-282-0/+142
|/ | | | | | | Add support for peeking into the front of the channel if the value implements Clone. This can be useful in single-receiver situations where you don't want to remove the item from the queue until you've successfully processed it.
* embassy-sync: bump to 0.7.0Matt Johnston2025-05-222-1/+3
|
* embassy-sync: Update changelogMatt Johnston2025-05-221-0/+13
|
* Update defmt dependenciesYuri Astrakhan2025-05-181-1/+1
|
* clarify docs for signal and watchJuliDi2025-05-042-4/+5
|
* docs: extend the waker documentationckrenslehner2025-04-265-1/+13
|
* Merge pull request #3932 from AlixANNERAUD/add-rwlockDario Nieuwenhuis2025-04-142-0/+388
|\ | | | | Add RwLock to embassy-sync
| * Refactor RwLock implementation by removing unused map methods and cleaning ↵Alix ANNERAUD2025-04-121-237/+1
| | | | | | | | up code for improved readability
| * Enhance RwLock documentation and add map methods for read and write guards ↵Alix ANNERAUD2025-03-171-6/+57
| | | | | | | | to improve data access flexibility
| * Refactor RwLock implementation to support try_read and try_write methods, ↵Alix ANNERAUD2025-03-171-17/+253
| | | | | | | | enhancing lock acquisition flexibility
| * Remove blocking read-write lock module and its references and refactor ↵Alix ANNERAUD2025-03-164-536/+52
| | | | | | | | rwlock for a simpler approach
| * Remove unnecessary comment in CriticalSectionRawRwLock implementationAlix ANNERAUD2025-02-281-2/+0
| |
| * Refactor imports in raw read-write lock module for clarityAlix ANNERAUD2025-02-281-1/+2
| |
| * Remove obsolete `raw_rwlock.rs` fileAlix ANNERAUD2025-02-281-0/+0
| |
| * Implement read-write lock methods in CriticalSectionRawRwLock and update testsAlix ANNERAUD2025-02-282-7/+52
| |
| * Fix module references in blocking read-write lock implementationAlix ANNERAUD2025-02-282-18/+18
| |