123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- [package]
- name = "dioxus"
- version = "0.3.2"
- authors = ["Jonathan Kelley", "Dioxus Labs", "ealmloff"]
- 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.65.0"
- [dependencies]
- dioxus-core = { workspace = true }
- dioxus-html = { workspace = true, optional = true }
- dioxus-core-macro = { workspace = true, optional = true }
- dioxus-hooks = { workspace = true, optional = true }
- dioxus-rsx = { workspace = true, optional = true }
- [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
- dioxus-hot-reload = { workspace = true, optional = true }
- [features]
- default = ["macro", "hooks", "html", "hot-reload"]
- macro = ["dioxus-core-macro", "dioxus-rsx"]
- html = ["dioxus-html"]
- hooks = ["dioxus-hooks"]
- hot-reload = ["dioxus-hot-reload"]
- [dev-dependencies]
- futures-util = { workspace = true }
- log = { workspace = true }
- rand = { version = "0.8.4", features = ["small_rng"] }
- criterion = "0.3.5"
- thiserror = "1.0.30"
- env_logger = "0.10.0"
- tokio = { workspace = true, features = ["full"] }
- # dioxus-edit-stream = { workspace = true }
- [[bench]]
- name = "jsframework"
- harness = false
|