123456789101112131415161718192021222324252627282930313233 |
- [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.1.0"
- smallvec = "1.6"
- fxhash = "0.2"
- anymap = "0.12.1"
- [dev-dependencies]
- dioxus = { path = "../rsx-prelude", version = "^0.1.0", package = "rsx-prelude" }
- tokio = { version = "1" }
|