summaryrefslogtreecommitdiffstats
path: root/futures (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Leverage new `AsyncFn` traits in `stream` moduleLibravatar Héctor Ramón Jiménez2025-02-212-13/+7
|
* Remove unnecessary `Future` importsLibravatar Héctor Ramón Jiménez2025-02-217-10/+0
|
* Run `cargo fmt`Libravatar Héctor Ramón Jiménez2025-02-214-4/+4
|
* Merge pull request #2780 from l4l/forked-wasmtimerLibravatar Héctor2025-02-162-29/+18
|\ | | | | Use working wasmtimer for time::every
| * Use working wasmtimer for time::everyLibravatar Kitsu2025-02-022-29/+18
| |
* | Fix outdated `id` mention in `Subscription` docsLibravatar Héctor Ramón Jiménez2025-02-141-1/+2
| |
* | Introduce `Task::map_with`Libravatar Héctor Ramón Jiménez2025-02-111-0/+1
| |
* | Rewrite `websocket` example using `sipper`Libravatar Héctor Ramón Jiménez2025-02-112-7/+5
|/
* Implement `time::repeat` and simplify `Subscription::run_with`Libravatar Héctor Ramón Jiménez2025-01-242-40/+46
|
* Add `must_use` attribute to `Task`Libravatar Héctor Ramón Jiménez2024-09-191-1/+1
|
* Improve imports of `Subscription::run` doc exampleLibravatar Héctor Ramón Jiménez2024-09-181-5/+10
|
* Bump version to `0.13.0` :tada:Libravatar Héctor Ramón Jiménez2024-09-181-4/+4
|
* Fix lints for Rust 1.80Libravatar Héctor Ramón Jiménez2024-07-262-5/+5
|
* Finish "The Pocket Guide"Libravatar Héctor Ramón Jiménez2024-07-161-2/+2
|
* Introduce `stream::try_channel` helperLibravatar Héctor Ramón Jiménez2024-07-111-0/+21
|
* Allow future in `stream::channel` to returnLibravatar Héctor Ramón Jiménez2024-07-081-3/+2
|
* Fix `wasm_bindgen` backend in `iced_futures`Libravatar Héctor Ramón Jiménez2024-07-051-1/+1
|
* Hide `Subscription` internalsLibravatar Héctor Ramón Jiménez2024-07-056-177/+205
| | | | .. and introduce `stream::channel` helper
* Simplify `subscription::channel` exampleLibravatar Héctor Ramón Jiménez2024-07-021-29/+14
|
* Move `Maybe*` traits back to `iced_futures`Libravatar Héctor Ramón Jiménez2024-06-148-9/+44
|
* Replace `Command` with a new `Task` API with chain supportLibravatar Héctor Ramón Jiménez2024-06-148-43/+9
|
* Introduce `subscription::Event`Libravatar Héctor Ramón Jiménez2024-06-115-61/+104
| | | | ... and remove `PlatformSpecific` from `Event`
* Introduce `window::Id` to `Event` subscriptionsLibravatar Héctor Ramón Jiménez2024-06-105-24/+43
| | | | And remove `window::Id` from `Event` altogether.
* Use `Skip` as the `MissedTickBehavior` for `tokio` futures backendLibravatar Héctor Ramón Jiménez2024-04-161-6/+8
|
* Use built-in `[lints]` table in `Cargo.toml`Libravatar Héctor Ramón Jiménez2024-04-072-7/+3
|
* Fix `wasm_bindgen` backend in `iced_futures`Libravatar Héctor Ramón Jiménez2024-04-011-2/+1
|
* Use `rustc-hash` for most of our `HashMap` and `HashSet` instancesLibravatar Héctor Ramón Jiménez2024-04-016-12/+11
|
* Fix `block_on` in `iced_wgpu` hanging Wasm buildsLibravatar Héctor Ramón Jiménez2024-03-071-1/+1
|
* Point doc links to `0.12` branchLibravatar Héctor Ramón Jiménez2024-02-151-4/+4
|
* Remove redundant `id` field in `subscription::Map`Libravatar Héctor Ramón Jiménez2024-02-051-7/+2
|
* Assert closure provided to `Subscription::map` is non-capturingLibravatar Héctor Ramón Jiménez2024-02-051-4/+12
|
* Use `TypeId` to identify `subscription::Map`Libravatar Héctor Ramón Jiménez2024-02-051-10/+27
|
* Fix grammar in `iced_futures::maybe` moduleLibravatar Héctor Ramón Jiménez2024-01-181-4/+4
|
* Fix typo `Send -> Sync`Libravatar Héctor Ramón Jiménez2024-01-181-1/+1
|
* Remove `Compositor` window genericLibravatar Héctor Ramón Jiménez2024-01-182-3/+17
| | | | And update `glyphon` and `window_clipboard`
* Refactor `KeyCode` into `Key` and `Location`Libravatar Héctor Ramón Jiménez2024-01-161-9/+8
|
* Update `winit` to `0.29.4`Libravatar Héctor Ramón Jiménez2023-12-151-0/+1
|
* Merge branch 'master' into feat/multi-window-supportLibravatar Héctor Ramón Jiménez2023-11-297-128/+209
|\
| * Implement `Command::run` for executing a `Stream` to completionLibravatar Héctor Ramón Jiménez2023-11-291-1/+24
| |
| * Centralize `clippy` lints in `.cargo/config.toml`Libravatar Héctor Ramón Jiménez2023-09-201-6/+0
| |
| * Merge pull request #2091 from nyurik/docsLibravatar Héctor Ramón2023-09-191-2/+2
| |\ | | | | | | Chore: Apply clippy docs keyword quoting
| | * Chore: Apply clippy docs keyword quotingLibravatar Yuri Astrakhan2023-09-191-2/+2
| | | | | | | | | | | | Add quotes a number of doc strings like `sRGB`
| * | Chore: Inline format args for ease of readingLibravatar Yuri Astrakhan2023-09-191-2/+1
| |/ | | | | | | A minor cleanup to inline all simple cases of format arguments. Makes the format strings just a bit easier to read.
| * Deny `broken_intradoc_links` and verify documentation in CILibravatar Héctor Ramón Jiménez2023-09-091-2/+3
| |
| * Fix majority of unresolved documentation linksLibravatar Matthias Vogelgesang2023-09-093-6/+8
| |
| * Merge pull request #2069 from iced-rs/use-workspace-dependenciesLibravatar Héctor Ramón2023-09-071-34/+27
| |\ | | | | | | Use workspace dependencies and package inheritance
| | * Use workspace dependencies and package inheritanceLibravatar Héctor Ramón Jiménez2023-09-041-34/+27
| | | | | | | | | | | | | | | | | | We are also taking this as a chance to synchronize the versions of all the crates! Because of this, we will skip the `0.11` version.
| * | Add hotkey support for `stopwatch` exampleLibravatar Héctor Ramón Jiménez2023-09-071-2/+2
| | |
| * | Introduce `keyboard::on_key_press` and `on_key_release`Libravatar Héctor Ramón Jiménez2023-09-074-72/+141
| |/ | | | | | | Also rename `subscription::events*` to `event::listen*`.
| * Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-07-282-6/+6
| |