iced-yoda/web/Cargo.toml

49 lines
953 B
TOML
Raw Normal View History

2019-09-14 19:16:06 +02:00
[package]
name = "iced_web"
2021-03-31 20:06:03 +02:00
version = "0.4.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/iced-rs/iced"
2019-09-14 19:16:06 +02:00
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.2"
wasm-bindgen = "0.2"
2019-11-24 11:25:14 +01:00
wasm-bindgen-futures = "0.4"
url = "2.0"
num-traits = "0.2"
base64 = "0.13"
2019-09-14 19:16:06 +02:00
[dependencies.iced_core]
2021-03-31 20:06:03 +02:00
version = "0.4"
path = "../core"
[dependencies.iced_futures]
2021-03-31 20:06:03 +02:00
version = "0.3"
path = "../futures"
2020-04-02 17:08:28 +02:00
[dependencies.iced_style]
2021-03-31 20:06:03 +02:00
version = "0.3"
2020-04-02 17:08:28 +02:00
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
]