Cargo.toml 910 B

1234567891011121314151617181920212223242526272829303132
  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/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", "ssr"]
  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.3.0", features = ["serialize"] }
  15. askama_escape = "0.10.3"
  16. thiserror = "1.0.23"
  17. rustc-hash = "1.1.0"
  18. lru = "0.10.0"
  19. log = "0.4.13"
  20. http = "0.2.9"
  21. tokio = { version = "1.28", features = ["full"] }
  22. [dev-dependencies]
  23. dioxus = { path = "../dioxus", version = "0.3.0" }
  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"