Cargo.toml 836 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "dioxus-ssr"
  3. version = "0.3.0"
  4. authors = ["Jonathan Kelley"]
  5. edition = "2018"
  6. description = "Dioxus render-to-string"
  7. license = "MIT OR Apache-2.0"
  8. repository = "https://github.com/DioxusLabs/dioxus/"
  9. homepage = "https://dioxuslabs.com/docs/0.3/guide/en/getting_started/ssr.html"
  10. keywords = ["dom", "ui", "gui", "react", "ssr"]
  11. [dependencies]
  12. dioxus-core = { workspace = true, features = ["serialize"] }
  13. askama_escape = "0.10.3"
  14. thiserror = "1.0.23"
  15. rustc-hash = "1.1.0"
  16. lru = "0.10.0"
  17. log = "0.4.13"
  18. http = "0.2.9"
  19. tokio = { version = "1.28", features = ["full"] }
  20. [dev-dependencies]
  21. dioxus = { workspace = true }
  22. thiserror = { workspace = true }
  23. log = { workspace = true }
  24. fern = { version = "0.6.0", features = ["colored"] }
  25. anyhow = "1.0"
  26. argh = "0.1.4"
  27. serde = "1.0.120"
  28. serde_json = "1.0.61"
  29. fs_extra = "1.2.0"