Cargo.toml 476 B

123456789101112131415161718
  1. [package]
  2. name = "const-serialize-macro"
  3. version = { workspace = true }
  4. authors = ["Evan Almloff"]
  5. edition = "2021"
  6. description = "A macro to derive const serialize"
  7. license = "MIT OR Apache-2.0"
  8. repository = "https://github.com/dioxuslabs/dioxus"
  9. homepage = "https://dioxuslabs.com/learn/0.5/getting_started"
  10. keywords = ["const", "serialize"]
  11. [dependencies]
  12. syn = { workspace = true }
  13. quote = { workspace = true }
  14. proc-macro2 = { workspace = true }
  15. [lib]
  16. proc-macro = true