2021-01-15 01:56:28 +00:00
|
|
|
[package]
|
|
|
|
name = "dioxus-web"
|
|
|
|
version = "0.0.0"
|
|
|
|
authors = ["Jonathan Kelley <jkelleyrtp@gmail.com>"]
|
|
|
|
edition = "2018"
|
2021-02-28 22:22:23 +00:00
|
|
|
description = "Dioxus VirtualDOM renderer for the web browser using websys"
|
|
|
|
license = "MIT/Apache-2.0"
|
2021-01-15 01:56:28 +00:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2021-01-16 06:30:48 +00:00
|
|
|
[dependencies]
|
2021-02-28 22:38:48 +00:00
|
|
|
dioxus-core = { path = "../core", version = "0.1.2" }
|
2021-01-16 06:30:48 +00:00
|
|
|
js-sys = "0.3"
|
2021-02-15 05:17:40 +00:00
|
|
|
wasm-bindgen = "0.2.69"
|
|
|
|
# wasm-bindgen = "0.2.70"
|
2021-01-16 06:30:48 +00:00
|
|
|
lazy_static = "1.4.0"
|
2021-02-12 21:11:33 +00:00
|
|
|
wasm-bindgen-futures = "0.4.20"
|
|
|
|
futures = "0.3.12"
|
2021-02-13 07:49:10 +00:00
|
|
|
wasm-logger = "0.2.0"
|
|
|
|
log = "0.4.14"
|
2021-02-13 08:19:35 +00:00
|
|
|
fxhash = "0.2.1"
|
2021-02-17 15:53:55 +00:00
|
|
|
pretty_env_logger = "0.4.0"
|
|
|
|
console_error_panic_hook = "0.1.6"
|
2021-02-27 16:43:28 +00:00
|
|
|
generational-arena = "0.2.8"
|
2021-02-28 22:22:23 +00:00
|
|
|
wasm-bindgen-test = "0.3.21"
|
2021-02-12 21:11:33 +00:00
|
|
|
# html-validation = { path = "../html-validation", version = "0.1.1" }
|
2021-01-16 06:30:48 +00:00
|
|
|
|
|
|
|
[dependencies.web-sys]
|
|
|
|
version = "0.3"
|
|
|
|
features = [
|
|
|
|
"Comment",
|
|
|
|
"Document",
|
|
|
|
"Element",
|
|
|
|
"HtmlElement",
|
2021-02-26 17:58:03 +00:00
|
|
|
"HtmlInputElement",
|
2021-01-16 06:30:48 +00:00
|
|
|
"EventTarget",
|
|
|
|
"HtmlCollection",
|
|
|
|
"Node",
|
|
|
|
"NodeList",
|
|
|
|
"Text",
|
|
|
|
"Window",
|
|
|
|
"Event",
|
|
|
|
"MouseEvent",
|
|
|
|
"InputEvent",
|
2021-02-13 08:19:35 +00:00
|
|
|
"DocumentType",
|
2021-02-17 15:53:55 +00:00
|
|
|
"CharacterData",
|
2021-02-26 17:58:03 +00:00
|
|
|
"HtmlOptionElement",
|
2021-01-16 06:30:48 +00:00
|
|
|
]
|
2021-02-15 19:14:28 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
debug = true
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib"]
|