Cargo.toml 740 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "dioxus_server_macro"
  3. version = { workspace = true }
  4. edition = "2021"
  5. repository = "https://github.com/DioxusLabs/dioxus/"
  6. homepage = "https://dioxuslabs.com/docs/0.4/guide/en/getting_started/fullstack.html"
  7. keywords = ["dom", "ui", "gui", "react", "liveview"]
  8. authors = ["Jonathan Kelley", "Evan Almloff"]
  9. license = "MIT OR Apache-2.0"
  10. description = "Server function macros for Dioxus"
  11. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  12. [dependencies]
  13. proc-macro2 = "^1.0.63"
  14. quote = "^1.0.26"
  15. syn = { version = "2", features = ["full"] }
  16. convert_case = "^0.6.0"
  17. server_fn_macro = "^0.5.2"
  18. [lib]
  19. proc-macro = true
  20. [features]
  21. default = []
  22. server = ["server_fn_macro/ssr"]