1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- [package]
- name = "dioxus"
- version = "0.2.4"
- authors = ["Jonathan Kelley"]
- edition = "2021"
- description = "Core functionality 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://dioxuslabs.com"
- keywords = ["dom", "ui", "gui", "react", "wasm"]
- rust-version = "1.60.0"
- [dependencies]
- dioxus-core = { path = "../core", version = "^0.2.1" }
- dioxus-html = { path = "../html", version = "^0.2.1", optional = true }
- dioxus-core-macro = { path = "../core-macro", version = "^0.2.1", optional = true }
- dioxus-hooks = { path = "../hooks", version = "^0.2.1", optional = true }
- dioxus-rsx = { path = "../rsx", optional = true }
- [features]
- default = ["macro", "hooks", "html"]
- macro = ["dioxus-core-macro", "dioxus-rsx"]
- html = ["dioxus-html"]
- hooks = ["dioxus-hooks"]
- hot-reload = [
- "dioxus-core/hot-reload",
- ]
- [dev-dependencies]
- futures-util = "0.3.21"
- log = "0.4.14"
- rand = { version = "0.8.4", features = ["small_rng"] }
- criterion = "0.3.5"
- thiserror = "1.0.30"
- env_logger = "0.9.0"
- [[bench]]
- name = "create"
- harness = false
- [[bench]]
- name = "jsframework"
- harness = false
|