Cargo.toml 510 B

123456789101112131415
  1. [package]
  2. name = "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. quote = "1.0.26"
  8. # server_fn_macro = { git = "https://github.com/leptos-rs/leptos", rev = "1e037ecb60965c7c55fd781fdc8de7863ffd102b", features = ["stable"] }
  9. server_fn_macro = { path = "D:/Users/Desktop/github/leptos/server_fn_macro", features = ["stable"] }
  10. syn = { version = "1", features = ["full"] }
  11. [lib]
  12. proc-macro = true