Cargo.toml 985 B

12345678910111213141516171819202122232425262728293031323334353637
  1. [package]
  2. name = "dioxus-ssr"
  3. version = { workspace = true }
  4. authors = ["Jonathan Kelley"]
  5. edition = "2021"
  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. dioxus-html = { workspace = true, features = ["eval"]}
  13. askama_escape = "0.10.3"
  14. thiserror = "1.0.23"
  15. rustc-hash = "1.1.0"
  16. lru = "0.10.0"
  17. tracing = { workspace = true }
  18. http = "0.2.9"
  19. tokio = { version = "1.28", features = ["fs", "io-util"], optional = true }
  20. async-trait = "0.1.58"
  21. serde_json = { version = "1.0" }
  22. [dev-dependencies]
  23. dioxus = { workspace = true }
  24. tracing = { workspace = true }
  25. fern = { version = "0.6.0", features = ["colored"] }
  26. anyhow = "1.0"
  27. argh = "0.1.4"
  28. serde = "1.0.120"
  29. serde_json = "1.0.61"
  30. fs_extra = "1.2.0"
  31. dioxus-signals = { workspace = true }
  32. [features]
  33. default = []
  34. incremental = ["dep:tokio"]