Cargo.toml 952 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [package]
  2. name = "dioxus-ssr"
  3. version = "0.1.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 = [
  12. "dom",
  13. "ui",
  14. "user interface",
  15. "gui",
  16. "react",
  17. "state",
  18. "management",
  19. "wasm",
  20. "web",
  21. "ssr",
  22. ]
  23. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  24. [dependencies]
  25. dioxus-core = { path = "../core", version = "^0.1.3", features = ["serialize"] }
  26. [dev-dependencies]
  27. dioxus-hooks = { path = "../hooks" }
  28. dioxus-html = { path = "../html" }
  29. thiserror = "1.0.23"
  30. log = "0.4.13"
  31. fern = { version = "0.6.0", features = ["colored"] }
  32. anyhow = "1.0"
  33. argh = "0.1.4"
  34. serde = "1.0.120"
  35. serde_json = "1.0.61"
  36. fs_extra = "1.2.0"
  37. dioxus-core-macro = { path = "../core-macro" }