Cargo.toml 535 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "dioxus-config-macro"
  3. version = { workspace = true }
  4. authors = ["Jonathan Kelley"]
  5. edition = "2021"
  6. description = "Configuration macros for Dioxus"
  7. license = "MIT OR Apache-2.0"
  8. repository = "https://github.com/DioxusLabs/dioxus/"
  9. homepage = "https://dioxuslabs.com"
  10. keywords = ["dom", "ui", "gui", "react"]
  11. [lib]
  12. proc-macro = true
  13. [dependencies]
  14. proc-macro2 = { version = "1.0" }
  15. quote = { workspace = true }
  16. [features]
  17. default = []
  18. fullstack = []
  19. desktop = []
  20. mobile = []
  21. web = []
  22. ssr = []
  23. liveview = []
  24. tui = []