2019-09-14 19:16:06 +02:00
|
|
|
[package]
|
|
|
|
|
name = "iced_web"
|
2019-11-25 14:55:14 +01:00
|
|
|
version = "0.1.0"
|
2019-09-14 19:16:06 +02:00
|
|
|
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
|
|
|
|
|
edition = "2018"
|
|
|
|
|
description = "A web backend for Iced"
|
|
|
|
|
license = "MIT"
|
|
|
|
|
repository = "https://github.com/hecrj/iced"
|
|
|
|
|
documentation = "https://docs.rs/iced_web"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
keywords = ["gui", "ui", "web", "interface", "widgets"]
|
|
|
|
|
categories = ["web-programming"]
|
|
|
|
|
|
|
|
|
|
[badges]
|
|
|
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2020-02-05 01:04:46 +01:00
|
|
|
iced_style = { version = "0.1.0-alpha", path = "../style" }
|
2019-09-14 19:16:06 +02:00
|
|
|
dodrio = "0.1.0"
|
2019-10-23 02:33:07 +02:00
|
|
|
wasm-bindgen = "0.2.51"
|
2019-11-24 11:25:14 +01:00
|
|
|
wasm-bindgen-futures = "0.4"
|
2020-02-05 04:13:13 +01:00
|
|
|
url = "2.0"
|
2019-09-14 19:16:06 +02:00
|
|
|
|
2020-01-19 10:17:08 +01:00
|
|
|
[dependencies.iced_core]
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
path = "../core"
|
|
|
|
|
|
|
|
|
|
[dependencies.iced_futures]
|
|
|
|
|
version = "0.1.0-alpha"
|
|
|
|
|
path = "../futures"
|
|
|
|
|
|
2019-09-14 19:16:06 +02:00
|
|
|
[dependencies.web-sys]
|
|
|
|
|
version = "0.3.27"
|
|
|
|
|
features = [
|
|
|
|
|
"console",
|
|
|
|
|
"Document",
|
|
|
|
|
"HtmlElement",
|
2019-09-15 18:53:13 +02:00
|
|
|
"HtmlInputElement",
|
|
|
|
|
"Event",
|
|
|
|
|
"EventTarget",
|
|
|
|
|
"InputEvent",
|
2020-02-06 03:06:06 +01:00
|
|
|
"KeyboardEvent",
|
2019-09-14 19:16:06 +02:00
|
|
|
]
|