Cargo.toml 824 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "dioxus-tui"
  3. version = "0.2.0"
  4. authors = ["Jonathan Kelley, @dementhos"]
  5. edition = "2018"
  6. description = "TUI-based renderer for Dioxus"
  7. repository = "https://github.com/DioxusLabs/dioxus/"
  8. homepage = "https://dioxuslabs.com"
  9. documentation = "https://dioxuslabs.com"
  10. keywords = ["dom", "ui", "gui", "react", "terminal"]
  11. license = "MIT/Apache-2.0"
  12. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  13. [dependencies]
  14. dioxus-core = { path = "../core", version = "^0.2.0" }
  15. dioxus-html = { path = "../html", version = "^0.2.0" }
  16. tui = "0.17.0"
  17. crossterm = "0.23.0"
  18. anyhow = "1.0.42"
  19. thiserror = "1.0.24"
  20. ctrlc = "3.2.1"
  21. bumpalo = { version = "3.8.0", features = ["boxed"] }
  22. tokio = { version = "1.15.0", features = ["full"] }
  23. futures = "0.3.19"
  24. stretch2 = "0.4.0"