Remove generic Hasher and Event from subscription::Recipe
This commit is contained in:
parent
5fed065dc3
commit
f4cf488e0b
20 changed files with 341 additions and 406 deletions
|
|
@ -7,8 +7,6 @@ publish = false
|
|||
|
||||
[dependencies]
|
||||
iced = { path = "../..", features = ["tokio"] }
|
||||
iced_native = { path = "../../native" }
|
||||
iced_futures = { path = "../../futures" }
|
||||
|
||||
[dependencies.reqwest]
|
||||
version = "0.11"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
use iced_native::subscription;
|
||||
use iced::subscription;
|
||||
|
||||
use std::hash::Hash;
|
||||
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ publish = false
|
|||
|
||||
[dependencies]
|
||||
iced = { path = "../..", features = ["tokio", "debug"] }
|
||||
iced_native = { path = "../../native" }
|
||||
iced_futures = { path = "../../futures" }
|
||||
once_cell = "1.15"
|
||||
|
||||
[dependencies.async-tungstenite]
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
pub mod server;
|
||||
|
||||
use iced_futures::futures;
|
||||
use iced_native::subscription::{self, Subscription};
|
||||
use iced::futures;
|
||||
use iced::subscription::{self, Subscription};
|
||||
|
||||
use futures::channel::mpsc;
|
||||
use futures::sink::SinkExt;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
use iced_futures::futures;
|
||||
use iced::futures;
|
||||
|
||||
use futures::channel::mpsc;
|
||||
use futures::{SinkExt, StreamExt};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue