iced-yoda/web/Cargo.toml

47 lines
921 B
TOML
Raw Normal View History

2019-09-14 19:16:06 +02:00
[package]
name = "iced_web"
2020-04-15 08:50:47 +02:00
version = "0.2.1"
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]
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]
2020-04-02 17:08:28 +02:00
version = "0.2"
path = "../core"
[dependencies.iced_futures]
2020-04-02 17:08:28 +02:00
version = "0.1"
path = "../futures"
2020-04-02 17:08:28 +02:00
[dependencies.iced_style]
version = "0.1"
path = "../style"
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
]