dioxus/packages/interpreter/Cargo.toml

40 lines
1.3 KiB
TOML
Raw Normal View History

2022-02-01 15:38:48 -05:00
[package]
name = "dioxus-interpreter-js"
version = { workspace = true }
2024-01-18 19:27:55 -08:00
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"]
2022-02-01 15:38:48 -05:00
[dependencies]
2023-06-19 14:29:11 -05:00
wasm-bindgen = { workspace = true, optional = true }
2022-02-04 01:56:54 -05:00
js-sys = { version = "0.3.56", optional = true }
2024-01-18 04:07:28 -08:00
web-sys = { version = "0.3.56", optional = true, features = [
"Element",
"Node",
] }
2024-03-05 15:14:07 -08:00
sledgehammer_bindgen = { git = "https://github.com/ealmloff/sledgehammer_bindgen", default-features = false, optional = true }
2023-07-19 13:45:47 -07:00
sledgehammer_utils = { version = "0.2", optional = true }
2023-03-20 16:10:34 -05:00
serde = { version = "1.0", features = ["derive"], optional = true }
2022-02-04 01:56:54 -05:00
2024-01-18 04:07:28 -08:00
dioxus-core = { workspace = true, optional = true }
dioxus-html = { workspace = true, optional = true }
2022-02-04 01:56:54 -05:00
[features]
default = []
2023-03-20 16:10:34 -05:00
serialize = ["serde"]
2023-10-09 14:28:12 -05:00
sledgehammer = ["sledgehammer_bindgen", "sledgehammer_utils"]
2024-01-18 19:27:55 -08:00
webonly = [
2024-01-18 04:07:28 -08:00
"sledgehammer",
"wasm-bindgen",
"js-sys",
"web-sys",
"sledgehammer_bindgen/web",
]
binary-protocol = ["sledgehammer", "dioxus-core", "dioxus-html"]
minimal_bindings = []