Cargo.toml 1013 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "dioxus-lib"
  3. version = { workspace = true }
  4. authors = ["Jonathan Kelley", "Dioxus Labs", "ealmloff"]
  5. edition = "2021"
  6. description = "Portable, performant, and ergonomic framework for building cross-platform user interfaces in Rust"
  7. license = "MIT OR Apache-2.0"
  8. repository = "https://github.com/DioxusLabs/dioxus/"
  9. homepage = "https://dioxuslabs.com/learn/0.4/"
  10. keywords = ["dom", "ui", "gui", "react", "wasm"]
  11. rust-version = "1.65.0"
  12. [dependencies]
  13. dioxus-core = { workspace = true }
  14. dioxus-html = { workspace = true, optional = true }
  15. dioxus-core-macro = { workspace = true, optional = true }
  16. dioxus-config-macro = { workspace = true, optional = true }
  17. dioxus-hooks = { workspace = true, optional = true }
  18. dioxus-rsx = { workspace = true, optional = true }
  19. dioxus-signals = { workspace = true, optional = true }
  20. [features]
  21. default = ["macro", "html", "signals", "hooks"]
  22. signals = ["dioxus-signals"]
  23. macro = ["dioxus-core-macro", "dioxus-rsx"]
  24. html = ["dioxus-html"]
  25. hooks = ["dioxus-hooks"]