Cargo.toml 546 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "atoms"
  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. futures = "0.3.15"
  14. [dev-dependencies]
  15. uuid = { version="0.8.2", features=["v4", "wasm-bindgen"] }
  16. dioxus-web = { path="../web" }
  17. wasm-bindgen-futures = "*"
  18. wasm-logger = "0.2.0"
  19. console_error_panic_hook = "0.1.6"