mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-27 14:40:44 +00:00
67a6fa9eb8
* work on seperating tree struture from realdom * intial update to new mutations * handle height * update to taffy 0.2 * add as_varient functions to OwnedAttributeValue * make get node parent mut optionally return a parent * work on upward pass * add more code for parrellel passes * make resolve passes public * more work on parallel passes * fix deadlock and add more tests * move height into the tree instead of the realdom * make passes exicute in parallel instead of executing invidual passes in parellel * fix some warnings * add up dependant test * clean up examples * work on intigrating state with passes * update to new mutations * work on implementing macro * make the macro compile * more progress on macro * mark cloned nodes as dirty * update persistant_iterator utility * fix mask generation * update tui with new mutations * more progress updating tui * some basic tui examples working * don't push template nodes onto the stack * update hover example * update benchmark * update more examples * fix root node layout * ignore out of bounds renders * update color picker example * update all events example * update remaining examples * update tests * tests passing * move persistant iterator test * update examples * fix gaps in layout * fix formatting * fix memory leak
39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
[package]
|
|
name = "dioxus-tui"
|
|
version = "0.2.2"
|
|
authors = ["Jonathan Kelley, @dementhos"]
|
|
edition = "2021"
|
|
description = "TUI-based renderer for Dioxus"
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
homepage = "https://dioxuslabs.com"
|
|
documentation = "https://dioxuslabs.com"
|
|
keywords = ["dom", "ui", "gui", "react", "terminal"]
|
|
license = "MIT/Apache-2.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
dioxus-core = { path = "../core", version = "^0.2.1" }
|
|
dioxus-html = { path = "../html", version = "^0.2.1" }
|
|
dioxus-native-core = { path = "../native-core", version = "^0.2.0" }
|
|
dioxus-native-core-macro = { path = "../native-core-macro", version = "^0.2.0" }
|
|
|
|
tui = "0.17.0"
|
|
crossterm = "0.23.0"
|
|
anyhow = "1.0.42"
|
|
tokio = { version = "1.15.0", features = ["full"] }
|
|
futures = "0.3.19"
|
|
taffy = "0.2.1"
|
|
smallvec = "1.6"
|
|
rustc-hash = "1.1.0"
|
|
anymap = "0.12.1"
|
|
futures-channel = "0.3.25"
|
|
|
|
[dev-dependencies]
|
|
dioxus = { path = "../dioxus" }
|
|
tokio = { version = "1" }
|
|
criterion = "0.3.5"
|
|
|
|
[[bench]]
|
|
name = "update"
|
|
harness = false
|