mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 04:33:06 +00:00
6210c6fefe
* progress: reworked don't run this, it'll kill your web browser * feat: use_eval but with comms * revision: async recv & recv_sync * revision: use_eval * revision: standard eval interface * revision: use serde_json::Value instead of JsValue * revision: docs * revision: error message * create: desktop eval (wip) * fix: desktop eval * revision: wrap use_eval in Rc<RefCell<_>> * fix: fmt, clippy * fix: desktop tests * revision: change to channel system - fixes clippy errors - fixes playwright tests * fix: tests * fix: eval example * fix: fmt * fix: tests, desktop stuff * fix: tests * feat: drop handler * fix: tests * fix: rustfmt * revision: web promise/callback system * fix: recv error * revision: IntoFuture, functionation * fix: ci * revision: playwright web * remove: unescessary code * remove dioxus-html from public examples * prototype-patch * fix web eval * fix: rustfmt * fix: CI * make use_eval more efficient * implement eval for liveview as well * fix playwright tests * fix clippy * more clippy fixes * fix clippy * fix stack overflow * fix desktop mock * fix clippy --------- Co-authored-by: Evan Almloff <evanalmloff@gmail.com>
67 lines
1.7 KiB
TOML
67 lines
1.7 KiB
TOML
[package]
|
|
name = "dioxus-html"
|
|
version = "0.3.1"
|
|
authors = ["Jonathan Kelley"]
|
|
edition = "2018"
|
|
description = "HTML Element pack for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
homepage = "https://dioxuslabs.com"
|
|
keywords = ["dom", "ui", "gui", "react"]
|
|
|
|
[dependencies]
|
|
dioxus-core = { workspace = true }
|
|
dioxus-rsx = { workspace = true, features = ["hot_reload"], optional = true }
|
|
serde = { version = "1", features = ["derive"], optional = true }
|
|
serde_repr = { version = "0.1", optional = true }
|
|
wasm-bindgen = { workspace = true, optional = true }
|
|
euclid = "0.22.7"
|
|
enumset = "1.0.11"
|
|
keyboard-types = "0.6.2"
|
|
async-trait = "0.1.58"
|
|
serde-value = "0.7.0"
|
|
tokio = { workspace = true, features = ["fs", "io-util"], optional = true }
|
|
rfd = { version = "0.11.3", optional = true }
|
|
async-channel = "1.8.0"
|
|
serde_json = { version = "1", optional = true }
|
|
|
|
[dependencies.web-sys]
|
|
optional = true
|
|
version = "0.3.56"
|
|
features = [
|
|
"TouchEvent",
|
|
"MouseEvent",
|
|
"InputEvent",
|
|
"ClipboardEvent",
|
|
"KeyboardEvent",
|
|
"TouchEvent",
|
|
"WheelEvent",
|
|
"AnimationEvent",
|
|
"TransitionEvent",
|
|
"PointerEvent",
|
|
"FocusEvent",
|
|
"CompositionEvent",
|
|
"ClipboardEvent",
|
|
"Element",
|
|
"DomRect",
|
|
"ScrollIntoViewOptions",
|
|
"ScrollLogicalPosition",
|
|
"ScrollBehavior",
|
|
]
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1"
|
|
|
|
[features]
|
|
default = ["serialize"]
|
|
serialize = [
|
|
"serde",
|
|
"serde_repr",
|
|
"serde_json",
|
|
"euclid/serde",
|
|
"keyboard-types/serde",
|
|
"dioxus-core/serialize",
|
|
]
|
|
wasm-bind = ["web-sys", "wasm-bindgen"]
|
|
native-bind = ["tokio"]
|
|
hot-reload-context = ["dioxus-rsx"]
|