mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
6c323e9fc5
* Move getting started to Guide * Clean up summary and getting started * Shorten intro by moving stuff to individual platform docs * Make intro even shorter, summarize features * Further cleanup; move development-related docs to separate section * Make `guide` a crate. Turn code samples into examples so that we can check if they compile * Rewrite "Describing the UI": * Focus on RSX syntax (interactivity covered in later chapters); make sure samples are tested; concise language * Move some "special attribute" samples to the `examples` directory * Simplify introduction to components * Simplify introduction to component props * Document Prop features; add code samples * Simplify component children docs * Interactivity: better introduction to events * Hooks: better introduction * Remove outdated doc * Introducs use_ref * Simplify User Input chapter * Document event handler props * Meme editor example * Meme editor walkthrough * Add dark mode example * Guide for context; dark mode example * Guide: custom hooks * Guide: conditional rendering * Guide: rendering lists * Guide: rendering lists + keys * Move remaining infor from Reference to guide * Delete reference book
107 lines
3.6 KiB
TOML
107 lines
3.6 KiB
TOML
[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 = "./packages/core", version = "^0.2.1" }
|
|
dioxus-html = { path = "./packages/html", version = "^0.2.1", optional = true }
|
|
dioxus-core-macro = { path = "./packages/core-macro", version = "^0.2.1", optional = true }
|
|
dioxus-hooks = { path = "./packages/hooks", version = "^0.2.1", optional = true }
|
|
fermi = { path = "./packages/fermi", version = "^0.2.1", optional = true }
|
|
|
|
dioxus-web = { path = "./packages/web", version = "^0.2.1", optional = true }
|
|
dioxus-desktop = { path = "./packages/desktop", version = "^0.2.3", optional = true }
|
|
dioxus-ssr = { path = "./packages/ssr", version = "^0.2.1", optional = true }
|
|
|
|
dioxus-router = { path = "./packages/router", version = "^0.2.3", optional = true }
|
|
dioxus-interpreter-js = { path = "./packages/interpreter", version = "^0.2.1", optional = true }
|
|
dioxus-tui = { path = "./packages/tui", version = "^0.2.2", optional = true }
|
|
|
|
dioxus-rsx = { path = "./packages/rsx", optional = true }
|
|
dioxus-rsx-interpreter = { path = "./packages/rsx_interpreter", optional = true }
|
|
dioxus-liveview = { path = "./packages/liveview", version = "^0.1.0", optional = true }
|
|
|
|
dioxus-native-core = { path = "./packages/native-core", version = "^0.2.0", optional = true }
|
|
dioxus-native-core-macro = { path = "./packages/native-core-macro", version = "^0.2.0", optional = true }
|
|
|
|
# dioxus-mobile = { path = "./packages/mobile", version = "^0.2.0", optional = true }
|
|
# dioxus-rsx = { path = "./packages/rsx", optional = true }
|
|
# macro = ["dioxus-core-macro", "dioxus-rsx"]
|
|
|
|
[features]
|
|
default = ["macro", "hooks", "html"]
|
|
|
|
macro = ["dioxus-core-macro", "dioxus-rsx"]
|
|
hooks = ["dioxus-hooks"]
|
|
html = ["dioxus-html"]
|
|
ssr = ["dioxus-ssr"]
|
|
web = ["dioxus-web", "dioxus-router?/web"]
|
|
desktop = ["dioxus-desktop"]
|
|
router = ["dioxus-router"]
|
|
tui = ["dioxus-tui"]
|
|
liveview = ["dioxus-liveview"]
|
|
hot-reload = ["dioxus-core-macro/hot-reload", "dioxus-rsx-interpreter", "dioxus-desktop?/hot-reload", "dioxus-web?/hot-reload", "dioxus-router?/hot-reload"]
|
|
native-core = ["dioxus-native-core", "dioxus-native-core-macro"]
|
|
|
|
[workspace]
|
|
members = [
|
|
"packages/core",
|
|
"packages/core-macro",
|
|
"packages/html",
|
|
"packages/hooks",
|
|
"packages/web",
|
|
"packages/ssr",
|
|
"packages/desktop",
|
|
"packages/mobile",
|
|
"packages/interpreter",
|
|
"packages/fermi",
|
|
"packages/tui",
|
|
"packages/liveview",
|
|
"packages/autofmt",
|
|
"packages/rsx",
|
|
"packages/rsx_interpreter",
|
|
"packages/native-core",
|
|
"packages/native-core-macro",
|
|
"packages/rsx-prelude",
|
|
"docs/guide",
|
|
]
|
|
|
|
[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", "hot-reload"] }
|
|
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
|
|
|
|
[[bench]]
|
|
name = "tui_update"
|
|
harness = false
|