summaryrefslogtreecommitdiffstats
path: root/web/Cargo.toml
blob: 6d8c37b103c0245e56bfef4cec2a894d0695bcce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "iced_web"
version = "0.1.0-alpha"
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 = { version = "0.1.0-alpha", path = ".." }
dodrio = "0.1.0"
futures = "0.1"

[dependencies.web-sys]
version = "0.3.27"
features = [
    "console",
    "Document",
    "HtmlElement",
]