[package] name = "dioxus" version = "0.1.8" 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.56.0" [dependencies] dioxus-core = { path = "./packages/core", version = "^0.1.9" } dioxus-html = { path = "./packages/html", version = "^0.1.6", optional = true } dioxus-core-macro = { path = "./packages/core-macro", version = "^0.1.7", optional = true } dioxus-hooks = { path = "./packages/hooks", version = "^0.1.7", optional = true } fermi = { path = "./packages/fermi", version = "^0.1.0", optional = true } dioxus-web = { path = "./packages/web", version = "^0.0.5", optional = true } dioxus-desktop = { path = "./packages/desktop", version = "^0.1.6", optional = true } dioxus-ssr = { path = "./packages/ssr", version = "^0.1.3", optional = true } dioxus-router = { path = "./packages/router", version = "^0.1.1", optional = true } dioxus-mobile = { path = "./packages/mobile", version = "^0.0.3", optional = true } dioxus-interpreter-js = { path = "./packages/interpreter", version = "^0.0.0", optional = true } dioxus-tui = { path = "./packages/tui", version = "^0.1.0", optional = true } # dioxus-rsx = { path = "./packages/rsx", optional = true } # dioxus-liveview = { path = "./packages/liveview", optional = true } # macro = ["dioxus-core-macro", "dioxus-rsx"] [features] default = ["macro", "hooks", "html"] macro = ["dioxus-core-macro"] hooks = ["dioxus-hooks"] html = ["dioxus-html"] ssr = ["dioxus-ssr"] web = ["dioxus-web", "dioxus-router/web"] desktop = ["dioxus-desktop"] ayatana = ["dioxus-desktop/ayatana"] router = ["dioxus-router"] tui = ["dioxus-tui"] [workspace] members = [ "packages/core", "packages/core-macro", "packages/rsx", "packages/html", "packages/hooks", "packages/web", "packages/ssr", "packages/desktop", "packages/mobile", "packages/interpreter", "packages/fermi", "packages/tui" ] [dev-dependencies] futures-util = "0.3.21" log = "0.4.14" num-format = "0.4.0" separator = "0.4.1" serde = { version = "1.0.136", features = ["derive"] } im-rc = "15.0.0" anyhow = "1.0.53" serde_json = "1.0.79" rand = { version = "0.8.4", features = ["small_rng"] } tokio = { version = "1.16.1", features = ["full"] } reqwest = { version = "0.11.9", features = ["json"] } dioxus = { path = ".", features = ["desktop", "ssr", "router", "fermi", "tui"] } fern = { version = "0.6.0", features = ["colored"] } criterion = "0.3.5" thiserror = "1.0.30" env_logger = "0.9.0" [[bench]] name = "create" harness = false [[bench]] name = "jsframework" harness = false