Cargo.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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.5/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 = { workspace = true, features = ["full"] }
  16. server_fn_macro = "0.8.0-rc1"
  17. [dev-dependencies]
  18. dioxus = { workspace = true, features = ["fullstack"] }
  19. serde = { workspace = true, features = ["derive"] }
  20. tower-http = { workspace = true, features = ["timeout"]}
  21. axum = { workspace = true }
  22. [lib]
  23. proc-macro = true
  24. [features]
  25. axum = ["server_fn_macro/axum"]
  26. server = ["server_fn_macro/ssr"]
  27. reqwest = ["server_fn_macro/reqwest"]
  28. [package.metadata.docs.rs]
  29. cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]