12345678910111213141516171819202122232425262728 |
- [package]
- name = "dioxus-tui"
- version = "0.2.0"
- authors = ["Jonathan Kelley, @dementhos"]
- edition = "2018"
- 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.0" }
- dioxus-html = { path = "../html", version = "^0.2.0" }
- tui = "0.17.0"
- crossterm = "0.23.0"
- anyhow = "1.0.42"
- thiserror = "1.0.24"
- ctrlc = "3.2.1"
- bumpalo = { version = "3.8.0", features = ["boxed"] }
- tokio = { version = "1.15.0", features = ["full"] }
- futures = "0.3.19"
- stretch2 = "0.4.0"
|