Cargo.toml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. [workspace]
  2. members = [
  3. "packages/dioxus",
  4. "packages/core",
  5. "packages/core-macro",
  6. "packages/router",
  7. "packages/html",
  8. "packages/hooks",
  9. "packages/web",
  10. "packages/ssr",
  11. "packages/desktop",
  12. "packages/mobile",
  13. "packages/interpreter",
  14. "packages/fermi",
  15. "packages/liveview",
  16. "packages/autofmt",
  17. "packages/rsx",
  18. "packages/dioxus-tui",
  19. "packages/rink",
  20. "packages/native-core",
  21. "packages/native-core-macro",
  22. "packages/rsx-rosetta",
  23. "packages/signals",
  24. "packages/hot-reload",
  25. "packages/fullstack",
  26. "packages/fullstack/server-macro",
  27. "packages/fullstack/examples/axum-hello-world",
  28. "packages/fullstack/examples/axum-router",
  29. "packages/fullstack/examples/axum-desktop",
  30. "packages/fullstack/examples/salvo-hello-world",
  31. "packages/fullstack/examples/warp-hello-world",
  32. "docs/guide",
  33. ]
  34. # This is a "virtual package"
  35. # It is not meant to be published, but is used so "cargo run --example XYZ" works properly
  36. [package]
  37. name = "dioxus-examples"
  38. version = "0.0.0"
  39. authors = ["Jonathan Kelley"]
  40. edition = "2021"
  41. description = "Top level crate for the Dioxus repository"
  42. license = "MIT OR Apache-2.0"
  43. repository = "https://github.com/DioxusLabs/dioxus/"
  44. homepage = "https://dioxuslabs.com"
  45. documentation = "https://dioxuslabs.com"
  46. keywords = ["dom", "ui", "gui", "react", "wasm"]
  47. rust-version = "1.60.0"
  48. publish = false
  49. [dev-dependencies]
  50. dioxus = { path = "./packages/dioxus" }
  51. dioxus-desktop = { path = "./packages/desktop", features = ["transparent"] }
  52. dioxus-ssr = { path = "./packages/ssr" }
  53. dioxus-router = { path = "./packages/router" }
  54. dioxus-signals = { path = "./packages/signals" }
  55. fermi = { path = "./packages/fermi" }
  56. futures-util = "0.3.21"
  57. log = "0.4.14"
  58. num-format = "0.4.0"
  59. separator = "0.4.1"
  60. serde = { version = "1.0.136", features = ["derive"] }
  61. im-rc = "15.0.0"
  62. anyhow = "1.0.53"
  63. serde_json = "1.0.79"
  64. rand = { version = "0.8.4", features = ["small_rng"] }
  65. tokio = { version = "1.16.1", features = ["full"] }
  66. reqwest = { version = "0.11.9", features = ["json"] }
  67. fern = { version = "0.6.0", features = ["colored"] }
  68. thiserror = "1.0.30"
  69. env_logger = "0.9.0"
  70. simple_logger = "4.0.0"
  71. [profile.release]
  72. opt-level = 3
  73. lto = true
  74. debug = true