Cargo.toml 823 B

123456789101112131415161718192021222324252627282930313233
  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 }
  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 = ["fs", "io-util"], optional = true }
  19. [dev-dependencies]
  20. dioxus = { workspace = true }
  21. tracing = { workspace = true }
  22. fern = { version = "0.6.0", features = ["colored"] }
  23. anyhow = "1.0"
  24. argh = "0.1.4"
  25. serde = "1.0.120"
  26. serde_json = "1.0.61"
  27. fs_extra = "1.2.0"
  28. [features]
  29. default = ["incremental"]
  30. incremental = ["dep:tokio"]