mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
42 lines
1.3 KiB
TOML
42 lines
1.3 KiB
TOML
[package]
|
|
name = "dioxus-interpreter-js"
|
|
version = { workspace = true }
|
|
edition = "2021"
|
|
authors = ["Jonathan Kelley"]
|
|
description = "JS Intepreter 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"
|
|
documentation = "https://docs.rs/dioxus"
|
|
keywords = ["dom", "ui", "gui", "react", "wasm"]
|
|
|
|
[dependencies]
|
|
wasm-bindgen = { workspace = true, optional = true }
|
|
js-sys = { version = "0.3.56", optional = true }
|
|
web-sys = { version = "0.3.56", optional = true, features = [
|
|
"Element",
|
|
"Node",
|
|
] }
|
|
sledgehammer_bindgen = { version = "0.5.0", default-features = false, optional = true }
|
|
sledgehammer_utils = { version = "0.2", optional = true }
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
|
|
|
dioxus-core = { workspace = true, optional = true }
|
|
dioxus-html = { workspace = true, optional = true }
|
|
|
|
[build-dependencies]
|
|
md5 = "0.7.0"
|
|
|
|
[features]
|
|
default = []
|
|
serialize = ["serde"]
|
|
sledgehammer = ["sledgehammer_bindgen", "sledgehammer_utils"]
|
|
webonly = [
|
|
"sledgehammer",
|
|
"wasm-bindgen",
|
|
"js-sys",
|
|
"web-sys",
|
|
"sledgehammer_bindgen/web",
|
|
]
|
|
binary-protocol = ["sledgehammer", "dioxus-core", "dioxus-html"]
|
|
minimal_bindings = []
|