Cargo.toml 459 B

123456789101112131415161718
  1. [package]
  2. name = "recoil"
  3. version = "0.0.0"
  4. authors = ["Jonathan Kelley <jkelleyrtp@gmail.com>"]
  5. edition = "2018"
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. anyhow = "1.0.40"
  9. dioxus-core = { path = "../core" }
  10. generational-arena = "0.2.8"
  11. thiserror = "1.0.24"
  12. [dev-dependencies]
  13. uuid = { version = "0.8.2", features = ["v4"] }
  14. dioxus-web = { path = "../web" }
  15. wasm-bindgen-futures = "*"