Cargo.toml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. [package]
  2. name = "dioxus"
  3. version = "0.1.8"
  4. authors = ["Jonathan Kelley"]
  5. edition = "2021"
  6. description = "Core functionality for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
  7. license = "MIT OR 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. rust-version = "1.56.0"
  13. [dependencies]
  14. dioxus-core = { path = "./packages/core", version = "^0.1.9" }
  15. dioxus-html = { path = "./packages/html", version = "^0.1.6", optional = true }
  16. dioxus-core-macro = { path = "./packages/core-macro", version = "^0.1.7", optional = true }
  17. dioxus-hooks = { path = "./packages/hooks", version = "^0.1.7", optional = true }
  18. fermi = { path = "./packages/fermi", version = "^0.1.0", optional = true }
  19. # dioxus-rsx = { path = "./packages/rsx", optional = true }
  20. dioxus-web = { path = "./packages/web", version = "^0.0.5", optional = true }
  21. dioxus-desktop = { path = "./packages/desktop", version = "^0.1.6", optional = true }
  22. dioxus-ssr = { path = "./packages/ssr", version = "^0.1.3", optional = true }
  23. dioxus-router = { path = "./packages/router", version = "^0.1.1", optional = true }
  24. dioxus-mobile = { path = "./packages/mobile", version = "^0.0.3", optional = true }
  25. dioxus-interpreter-js = { path = "./packages/interpreter", version = "^0.0.0", optional = true }
  26. # dioxus-liveview = { path = "./packages/liveview", optional = true }
  27. [features]
  28. default = ["macro", "hooks", "html"]
  29. macro = ["dioxus-core-macro"]
  30. # macro = ["dioxus-core-macro", "dioxus-rsx"]
  31. hooks = ["dioxus-hooks"]
  32. html = ["dioxus-html"]
  33. ssr = ["dioxus-ssr"]
  34. web = ["dioxus-web"]
  35. desktop = ["dioxus-desktop"]
  36. ayatana = ["dioxus-desktop/ayatana"]
  37. router = ["dioxus-router"]
  38. [workspace]
  39. members = [
  40. "packages/core",
  41. "packages/core-macro",
  42. "packages/rsx",
  43. "packages/html",
  44. "packages/hooks",
  45. "packages/web",
  46. "packages/ssr",
  47. "packages/desktop",
  48. "packages/mobile",
  49. "packages/interpreter",
  50. "packages/fermi",
  51. ]
  52. [dev-dependencies]
  53. futures-util = "0.3.21"
  54. log = "0.4.14"
  55. num-format = "0.4.0"
  56. separator = "0.4.1"
  57. serde = { version = "1.0.136", features = ["derive"] }
  58. im-rc = "15.0.0"
  59. anyhow = "1.0.53"
  60. serde_json = "1.0.79"
  61. rand = { version = "0.8.4", features = ["small_rng"] }
  62. tokio = { version = "1.16.1", features = ["full"] }
  63. reqwest = { version = "0.11.9", features = ["json"] }
  64. dioxus = { path = ".", features = ["desktop", "ssr", "router", "fermi"] }