summaryrefslogtreecommitdiffstats
path: root/futures (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* | refactored window storage;Libravatar Bingus2023-07-211-1/+1
|/ | | | | new helper window events (Destroyed, Created); clippy + fmt;
* Make the subscription::channel function take a FnOnce closure instead of a ↵Libravatar Jonathan Lindsey2023-06-101-1/+1
| | | | Fn closure and remove Sync as a requirement for its output.
* Enable `doc_auto_cfg` when generating documentationLibravatar Héctor Ramón Jiménez2023-05-114-8/+1
|
* Merge branch 'master' into advanced-textLibravatar Héctor Ramón Jiménez2023-04-172-36/+69
|\
| * Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-04-131-3/+3
| |
* | Converge `Command` types from `iced_futures` and `iced_native`Libravatar Héctor Ramón Jiménez2023-03-052-72/+0
| |
* | Fix `wasm-bindgen` backend in `iced_futures`Libravatar Héctor Ramón Jiménez2023-03-051-8/+6
| |
* | Remove generic `Hasher` and `Event` from `subscription::Recipe`Libravatar Héctor Ramón Jiménez2023-03-058-125/+314
|/
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-02-182-4/+4
|
* Fix: Clippy lint 'let_underscore_future'Libravatar 13r0ck2023-01-272-0/+2
|
* Annotate `Command` and `Subscription` with `#[must_use]`Libravatar Ian Douglas Scott2023-01-262-0/+2
| | | | | | Calling a function returning one of these types without using it is almost certainly a mistake. Luckily Rust's `#[must_use]` can help warn about this.
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-01-141-3/+3
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-12-071-3/+3
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-11-101-1/+1
|
* Fix outdated links in documentationLibravatar Héctor Ramón Jiménez2022-11-101-3/+3
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-11-101-1/+1
|
* Fix further `clippy` lintsLibravatar Héctor Ramón Jiménez2022-07-093-8/+22
| | | | ... and explicitly annotate crates as well.
* Address Clippy lintsLibravatar Poly2022-07-092-6/+2
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-05-311-1/+1
|
* Fix `Subscription` cancelation when never awaitingLibravatar Héctor Ramón Jiménez2022-05-271-10/+23
| | | | | | | | `StreamExt::forward` will keep polling a ready `Stream` in a loop. If the `Stream` is always ready, the `poll` method of `Forward` effectively blocks (see https://github.com/rust-lang/futures-rs/issues/2552). The fix consists in manually implementing a simpler version of `Forward`.
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-05-021-1/+1
|
* Fix broken intra-doc links in documentationLibravatar Héctor Ramón Jiménez2022-04-302-2/+6
|
* Point repository links to `0.4` branch in documentationLibravatar Héctor Ramón Jiménez2022-04-301-3/+3
|
* Update Rust edition to 2021 :tada:Libravatar Héctor Ramón Jiménez2022-02-091-1/+1
|
* Fix `default` backend in `iced_futures`Libravatar Héctor Ramón Jiménez2022-02-013-3/+18
| | | | Fixes #1228.
* Implement `time` module for `wasm-bindgen` backend in `iced_futures`Libravatar Héctor Ramón Jiménez2022-01-282-0/+45
|
* Split `iced_futures` into different `backend` implementationsLibravatar Héctor Ramón Jiménez2022-01-2816-223/+267
|
* Introduce `MaybeSend` trait in `iced_futures`Libravatar Héctor Ramón Jiménez2022-01-285-101/+40
| | | | It allows to clean up all the `trait_aliases` modules!
* Experimental wgpu WebGL backend supportLibravatar Vladyslav Nikonov2022-01-282-9/+92
| | | | | | | | - Added missing `draw_cache_align_4x4` call for `brush_glyph` on wasm32 target - Added WebGL support to `integratio_wgpu` example - Fixed test.yml CI workflow - Removed spir-v shader in `integration_wgpu`; Fixed formatting - Removed redundant `BoxStream` typedef
* Remove support for old `tokio` crateLibravatar Héctor Ramón Jiménez2022-01-125-55/+9
|
* Change GitHub namespace to new org for all filesLibravatar LordRatte2022-01-033-5/+5
|
* Use commit hash in `html_logo_url`Libravatar Héctor Ramón Jiménez2021-12-091-1/+1
|
* Added icon in docsLibravatar daladim2021-12-091-0/+3
|
* Collect the platform-specific concrete future implementations into mods.Libravatar Tanner Rogalsky2021-11-141-22/+47
|
* Hide implementation details of `Command` in `iced_futures`Libravatar Héctor Ramón Jiménez2021-09-022-0/+71
|
* Make `Command` implementations platform-specificLibravatar Héctor Ramón Jiménez2021-09-023-152/+9
| | | | | | | | | This allows us to introduce a platform-specific `Action` to both `iced_native` and `iced_web` and remove the `Clipboard` from `Application::update` to maintain purity. Additionally, this should let us implement further actions to let users query and modify the shell environment (e.g. window, clipboard, and more!)
* docs: update all 0.2 github links to 0.3Libravatar Yusuf Bera Ertan2021-06-141-3/+3
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2021-03-311-1/+1
|
* Log event subscription error as a warningLibravatar Héctor Ramón Jiménez2021-02-231-1/+1
|
* Use `smol::Timer::interval` for `time::Every`Libravatar Héctor Ramón Jiménez2021-01-151-9/+1
|
* Fix `time::Every` implementation for `smol` runtimeLibravatar Héctor Ramón Jiménez2021-01-152-2/+10
|
* Add `smol` async runtimeLibravatar Jayce Fayne2021-01-145-3/+70
|
* Use `Instant::into_std` in `futures::time`Libravatar Héctor Ramón Jiménez2021-01-041-1/+1
|
* Update `tokio` to `1.0`Libravatar Yusuf Bera Ertan2021-01-042-5/+18
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2020-11-261-1/+1
|
* Update example links to point to `0.2` branchLibravatar Héctor Ramón Jiménez2020-11-261-3/+3
|
* Update graphs in crate docsLibravatar Héctor Ramón Jiménez2020-11-261-0/+2
|
* Use recently stabilized intra-doc linksLibravatar Héctor Ramón Jiménez2020-11-266-80/+5
| | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md
* Introduce `tokio_old` featureLibravatar Héctor Ramón Jiménez2020-11-255-2/+41
| | | | | This feature allows users to rely on the `0.2` version of `tokio` while the async ecosystem upgrades to the latest version.
* upgrade tokio to latest version(v0.3)Libravatar valbendan2020-11-052-3/+4
|