Cargo.toml 630 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "dioxus-ssr"
  3. version = "0.1.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. dioxus-core = { path = "../core", version = "0.1.2", features = ["serialize"] }
  9. [dev-dependencies]
  10. dioxus-hooks = { path = "../hooks" }
  11. dioxus-html = { path = "../html" }
  12. thiserror = "1.0.23"
  13. log = "0.4.13"
  14. fern = { version = "0.6.0", features = ["colored"] }
  15. anyhow = "1.0"
  16. argh = "0.1.4"
  17. serde = "1.0.120"
  18. serde_json = "1.0.61"
  19. fs_extra = "1.2.0"
  20. dioxus-core-macro = { path = "../core-macro" }