Cargo.toml 873 B

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "dioxus-ssr"
  3. version = { workspace = true }
  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. keywords = ["dom", "ui", "gui", "react", "ssr"]
  10. [dependencies]
  11. dioxus-core = { workspace = true, features = ["serialize"] }
  12. askama_escape = "0.10.3"
  13. thiserror = "1.0.23"
  14. rustc-hash = "1.1.0"
  15. lru = "0.10.0"
  16. tracing = { workspace = true }
  17. http = "0.2.9"
  18. tokio = { version = "1.28", features = ["full"], optional = true }
  19. [dev-dependencies]
  20. dioxus = { workspace = true }
  21. thiserror = { workspace = true }
  22. tracing = { workspace = true }
  23. fern = { version = "0.6.0", features = ["colored"] }
  24. anyhow = "1.0"
  25. argh = "0.1.4"
  26. serde = "1.0.120"
  27. serde_json = "1.0.61"
  28. fs_extra = "1.2.0"
  29. [features]
  30. default = ["incremental"]
  31. incremental = ["dep:tokio"]