mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 20:53:06 +00:00
48 lines
969 B
TOML
48 lines
969 B
TOML
[package]
|
|
name = "dioxus-web"
|
|
version = "0.0.0"
|
|
authors = ["Jonathan Kelley <jkelleyrtp@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
dioxus-core = { path = "../core" }
|
|
js-sys = "0.3"
|
|
wasm-bindgen = "0.2.69"
|
|
# wasm-bindgen = "0.2.70"
|
|
lazy_static = "1.4.0"
|
|
wasm-bindgen-futures = "0.4.20"
|
|
futures = "0.3.12"
|
|
wasm-logger = "0.2.0"
|
|
log = "0.4.14"
|
|
fxhash = "0.2.1"
|
|
pretty_env_logger = "0.4.0"
|
|
console_error_panic_hook = "0.1.6"
|
|
# html-validation = { path = "../html-validation", version = "0.1.1" }
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3"
|
|
features = [
|
|
"Comment",
|
|
"Document",
|
|
"Element",
|
|
"HtmlElement",
|
|
"EventTarget",
|
|
"HtmlCollection",
|
|
"Node",
|
|
"NodeList",
|
|
"Text",
|
|
"Window",
|
|
"Event",
|
|
"MouseEvent",
|
|
"InputEvent",
|
|
"DocumentType",
|
|
"CharacterData",
|
|
]
|
|
|
|
[profile.release]
|
|
debug = true
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|