Cargo.toml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. [package]
  2. name = "dioxus-tui"
  3. version = "0.2.2"
  4. authors = ["Jonathan Kelley, @dementhos"]
  5. edition = "2021"
  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.1" }
  15. dioxus-html = { path = "../html", version = "^0.2.1" }
  16. dioxus-native-core = { path = "../native-core", version = "^0.2.0" }
  17. dioxus-native-core-macro = { path = "../native-core-macro", version = "^0.2.0" }
  18. tui = "0.17.0"
  19. crossterm = "0.23.0"
  20. anyhow = "1.0.42"
  21. tokio = { version = "1.15.0", features = ["full"] }
  22. futures = "0.3.19"
  23. taffy = "0.1.0"
  24. smallvec = "1.6"
  25. rustc-hash = "1.1.0"
  26. anymap = "0.12.1"
  27. [dev-dependencies]
  28. dioxus = { path = "../dioxus" }
  29. tokio = { version = "1" }
  30. criterion = "0.3.5"
  31. [[bench]]
  32. name = "update"
  33. harness = false