Cargo.toml 437 B

12345678910111213141516
  1. [package]
  2. name = "dioxus_server_macro"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. proc-macro2 = "1.0.63"
  8. quote = "1.0.26"
  9. server_fn_macro = { git = "https://github.com/leptos-rs/leptos", rev = "6b90e1babd425c9a324181c86e3fd1b942c9b10f" }
  10. syn = { version = "2", features = ["full"] }
  11. convert_case = "0.6.0"
  12. [lib]
  13. proc-macro = true