Cargo.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. [package]
  2. name = "rink"
  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-html = { path = "../html", version = "^0.3.0" }
  15. dioxus-native-core = { path = "../native-core", version = "^0.2.0" }
  16. dioxus-native-core-macro = { path = "../native-core-macro", version = "^0.3.0" }
  17. tui = "0.17.0"
  18. crossterm = "0.23.0"
  19. anyhow = "1.0.42"
  20. tokio = { version = "1.15.0", features = ["full"] }
  21. futures = "0.3.19"
  22. taffy = "0.2.1"
  23. smallvec = "1.6"
  24. rustc-hash = "1.1.0"
  25. anymap = "1.0.0-beta.2"
  26. futures-channel = "0.3.25"
  27. shipyard = { version = "0.6.2", features = ["proc", "std"], default-features = false }
  28. once_cell = "1.17.1"
  29. [dev-dependencies]
  30. tokio = { version = "1" }
  31. criterion = "0.3.5"
  32. [features]
  33. default = []
  34. parallel = ["shipyard/parallel"]