dioxus/packages/interpreter/Cargo.toml

27 lines
1 KiB
TOML
Raw Normal View History

2022-02-01 15:38:48 -05:00
[package]
name = "dioxus-interpreter-js"
version = { workspace = true }
2022-02-01 15:38:48 -05:00
edition = "2018"
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 }
web-sys = { version = "0.3.56", optional = true, features = ["Element", "Node"] }
2023-04-17 07:18:26 -05:00
sledgehammer_bindgen = { version = "0.2.1", 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
[features]
default = []
2023-03-20 16:10:34 -05:00
serialize = ["serde"]
2022-02-04 01:56:54 -05:00
web = ["wasm-bindgen", "js-sys", "web-sys"]
2022-12-08 07:41:04 -06:00
sledgehammer = ["wasm-bindgen", "js-sys", "web-sys", "sledgehammer_bindgen", "sledgehammer_utils"]
minimal_bindings = []