Cargo.toml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. [package]
  2. name = "dioxus"
  3. version = "0.1.2"
  4. authors = ["Jonathan Kelley"]
  5. edition = "2018"
  6. description = "Core functionality for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
  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", "wasm"]
  12. [dependencies]
  13. dioxus-core = { path = "./packages/core", version = "^0.1.4" }
  14. dioxus-html = { path = "./packages/html", version = "^0.1.1", optional = true }
  15. dioxus-core-macro = { path = "./packages/core-macro", version = "^0.1.3", optional = true }
  16. dioxus-hooks = { path = "./packages/hooks", optional = true }
  17. dioxus-web = { path = "./packages/web", version = "^0.0.1", optional = true }
  18. dioxus-desktop = { path = "./packages/desktop", optional = true }
  19. dioxus-ssr = { path = "./packages/ssr", optional = true }
  20. dioxus-router = { path = "./packages/router", optional = true }
  21. # dioxus-mobile = { path = "./packages/mobile", optional = true }
  22. # dioxus-liveview = { path = "./packages/liveview", optional = true }
  23. [features]
  24. default = ["macro", "hooks", "html"]
  25. macro = ["dioxus-core-macro"]
  26. hooks = ["dioxus-hooks"]
  27. html = ["dioxus-html"]
  28. router = ["dioxus-router"]
  29. ssr = ["dioxus-ssr"]
  30. web = ["dioxus-web", "dioxus-router/web"]
  31. desktop = ["dioxus-desktop", "dioxus-router/desktop"]
  32. # mobile = ["dioxus-mobile"]
  33. # liveview = ["dioxus-liveview"]
  34. [workspace]
  35. members = [
  36. "packages/core",
  37. "packages/core-macro",
  38. "packages/html",
  39. "packages/hooks",
  40. "packages/web",
  41. "packages/ssr",
  42. "packages/desktop",
  43. "packages/mobile",
  44. ]
  45. [dev-dependencies]
  46. futures-util = "0.3.17"
  47. log = "0.4.14"
  48. num-format = "0.4.0"
  49. separator = "0.4.1"
  50. serde = { version = "1.0.131", features = ["derive"] }
  51. im-rc = "15.0.0"
  52. anyhow = "1.0.51"
  53. serde_json = "1.0.73"
  54. rand = { version = "0.8.4", features = ["small_rng"] }
  55. tokio = { version = "1.14.0", features = ["full"] }
  56. reqwest = { version = "0.11.8", features = ["json"] }