Cargo.toml 536 B

12345678910111213141516171819202122
  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. thiserror = "1.0.24"
  11. log = "0.4.14"
  12. im-rc = "15.0.0"
  13. [dev-dependencies]
  14. uuid = { version = "0.8.2", features = ["v4", "wasm-bindgen"] }
  15. dioxus-web = { path = "../web" }
  16. wasm-bindgen-futures = "*"
  17. wasm-logger = "0.2.0"
  18. console_error_panic_hook = "0.1.6"