iced-yoda/web/Cargo.toml

44 lines
930 B
TOML
Raw Normal View History

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]
iced_style = { version = "0.1.0-alpha", path = "../style" }
2019-09-14 19:16:06 +02:00
dodrio = "0.1.0"
wasm-bindgen = "0.2.51"
2019-11-24 11:25:14 +01:00
wasm-bindgen-futures = "0.4"
url = "2.0"
2019-09-14 19:16:06 +02: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",
"KeyboardEvent",
2019-09-14 19:16:06 +02:00
]