Cargo.toml 570 B

1234567891011121314151617181920
  1. [package]
  2. name = "rink"
  3. version = "0.1.0"
  4. edition = "2018"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. tui = { version = "0.16.0", features = ["crossterm"], default-features = false }
  8. crossterm = "0.22.1"
  9. anyhow = "1.0.42"
  10. thiserror = "1.0.24"
  11. dioxus = "0.1.8"
  12. dioxus-html = "0.1.6"
  13. hecs = "0.7.3"
  14. ctrlc = "3.2.1"
  15. bumpalo = { version = "3.8.0", features = ["boxed"] }
  16. tokio = { version = "1.15.0", features = ["full"] }
  17. futures = "0.3.19"
  18. stretch2 = { git = "https://github.com/DioxusLabs/stretch" }