Cargo.toml 854 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "dioxus-ssr"
  3. version = "0.2.0"
  4. authors = ["Jonathan Kelley"]
  5. edition = "2018"
  6. description = "Dioxus render-to-string"
  7. license = "MIT/Apache-2.0"
  8. repository = "https://github.com/DioxusLabs/dioxus/"
  9. homepage = "https://dioxuslabs.com"
  10. documentation = "https://dioxuslabs.com"
  11. keywords = ["dom", "ui", "gui", "react", "wasm"]
  12. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  13. [dependencies]
  14. dioxus-core = { path = "../core", version = "^0.2.0", features = ["serialize"] }
  15. [dev-dependencies]
  16. dioxus-hooks = { path = "../hooks" }
  17. dioxus-html = { path = "../html" }
  18. dioxus-core-macro = { path = "../core-macro" }
  19. thiserror = "1.0.23"
  20. log = "0.4.13"
  21. fern = { version = "0.6.0", features = ["colored"] }
  22. anyhow = "1.0"
  23. argh = "0.1.4"
  24. serde = "1.0.120"
  25. serde_json = "1.0.61"
  26. fs_extra = "1.2.0"