Cargo.toml 697 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "dioxus-ssr"
  3. version = "0.1.0"
  4. authors = ["Jonathan Kelley <jkelleyrtp@gmail.com>"]
  5. edition = "2018"
  6. description = "Dioxus render-to-string"
  7. license = "MIT/Apache-2.0"
  8. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  9. [dependencies]
  10. dioxus-core = { path = "../core", version ="^0.1.3", features = ["serialize"] }
  11. [dev-dependencies]
  12. dioxus-hooks = { path = "../hooks" }
  13. dioxus-html = { path = "../html" }
  14. thiserror = "1.0.23"
  15. log = "0.4.13"
  16. fern = { version = "0.6.0", features = ["colored"] }
  17. anyhow = "1.0"
  18. argh = "0.1.4"
  19. serde = "1.0.120"
  20. serde_json = "1.0.61"
  21. fs_extra = "1.2.0"
  22. dioxus-core-macro = { path = "../core-macro" }