diff options
author | 2023-03-05 04:15:10 +0100 | |
---|---|---|
committer | 2023-03-05 04:15:10 +0100 | |
commit | f4cf488e0b083b5d7b7612c650917233163ee9cb (patch) | |
tree | 66b7ebdbf6896f472c927d0f0d9fc02bdc5c5f83 /examples/download_progress | |
parent | 5fed065dc3aa3d2f9ff8d229cbffe003a89ba033 (diff) | |
download | iced-f4cf488e0b083b5d7b7612c650917233163ee9cb.tar.gz iced-f4cf488e0b083b5d7b7612c650917233163ee9cb.tar.bz2 iced-f4cf488e0b083b5d7b7612c650917233163ee9cb.zip |
Remove generic `Hasher` and `Event` from `subscription::Recipe`
Diffstat (limited to 'examples/download_progress')
-rw-r--r-- | examples/download_progress/Cargo.toml | 2 | ||||
-rw-r--r-- | examples/download_progress/src/download.rs | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/examples/download_progress/Cargo.toml b/examples/download_progress/Cargo.toml index f38679ea..212832f4 100644 --- a/examples/download_progress/Cargo.toml +++ b/examples/download_progress/Cargo.toml @@ -7,8 +7,6 @@ publish = false [dependencies] iced = { path = "../..", features = ["tokio"] } -iced_native = { path = "../../native" } -iced_futures = { path = "../../futures" } [dependencies.reqwest] version = "0.11" diff --git a/examples/download_progress/src/download.rs b/examples/download_progress/src/download.rs index 39dd843f..5ff951b3 100644 --- a/examples/download_progress/src/download.rs +++ b/examples/download_progress/src/download.rs @@ -1,4 +1,4 @@ -use iced_native::subscription; +use iced::subscription; use std::hash::Hash; |