From d0f79d2779d00752eef78cd98b6904cd888d59e3 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sat, 23 Nov 2019 20:23:38 +0100 Subject: Make `tour` work with `iced_web` again :tada: - Implements `TextInput`, `Scrollable`, and `Container` - Adds basic style generation --- web/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'web/Cargo.toml') diff --git a/web/Cargo.toml b/web/Cargo.toml index 473bde17..da71c811 100644 --- a/web/Cargo.toml +++ b/web/Cargo.toml @@ -15,7 +15,7 @@ categories = ["web-programming"] maintenance = { status = "actively-developed" } [dependencies] -iced_core = { version = "0.1.0-alpha", path = "../core" } +iced_core = { version = "0.1.0-alpha", path = "../core", features = ["command"] } dodrio = "0.1.0" wasm-bindgen = "0.2.51" -- cgit From 9f3abe920271996cc4a9c533ad5e0e75e3d18a3d Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sun, 24 Nov 2019 11:25:14 +0100 Subject: Spawn `Command` futures in `iced_web` --- web/Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'web/Cargo.toml') diff --git a/web/Cargo.toml b/web/Cargo.toml index da71c811..1d37e76c 100644 --- a/web/Cargo.toml +++ b/web/Cargo.toml @@ -18,6 +18,8 @@ maintenance = { status = "actively-developed" } iced_core = { version = "0.1.0-alpha", path = "../core", features = ["command"] } dodrio = "0.1.0" wasm-bindgen = "0.2.51" +wasm-bindgen-futures = "0.4" +futures = "0.3" [dependencies.web-sys] version = "0.3.27" -- cgit