mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-13 16:07:20 +00:00
45 lines
1.2 KiB
TOML
45 lines
1.2 KiB
TOML
[package]
|
|
name = "dioxus-html"
|
|
version = "0.2.1"
|
|
authors = ["Jonathan Kelley"]
|
|
edition = "2018"
|
|
description = "HTML Element pack for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
|
|
license = "MIT/Apache-2.0"
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
homepage = "https://dioxuslabs.com"
|
|
documentation = "https://docs.rs/dioxus"
|
|
keywords = ["dom", "ui", "gui", "react", "wasm"]
|
|
|
|
[dependencies]
|
|
dioxus-core = { path = "../core", version = "^0.2.1" }
|
|
serde = { version = "1", features = ["derive"], optional = true }
|
|
serde_repr = { version = "0.1", optional = true }
|
|
wasm-bindgen = { version = "0.2.79", optional = true }
|
|
euclid = "0.22.7"
|
|
enumset = "1.0.11"
|
|
keyboard-types = "0.6.2"
|
|
async-trait = "0.1.58"
|
|
|
|
[dependencies.web-sys]
|
|
optional = true
|
|
version = "0.3.56"
|
|
features = [
|
|
"TouchEvent",
|
|
"MouseEvent",
|
|
"InputEvent",
|
|
"ClipboardEvent",
|
|
"KeyboardEvent",
|
|
"TouchEvent",
|
|
"WheelEvent",
|
|
"AnimationEvent",
|
|
"TransitionEvent",
|
|
"PointerEvent",
|
|
"FocusEvent",
|
|
"CompositionEvent",
|
|
"ClipboardEvent",
|
|
]
|
|
|
|
[features]
|
|
default = []
|
|
serialize = ["serde", "serde_repr", "euclid/serde", "keyboard-types/serde"]
|
|
wasm-bind = ["web-sys", "wasm-bindgen"]
|