Cargo.toml 614 B

123456789101112131415161718192021222324
  1. [package]
  2. description = "Proc macros used by aya-log-ebpf"
  3. name = "aya-log-ebpf-macros"
  4. version = "0.1.0"
  5. authors.workspace = true
  6. edition.workspace = true
  7. homepage.workspace = true
  8. license.workspace = true
  9. repository.workspace = true
  10. rust-version.workspace = true
  11. [lints]
  12. workspace = true
  13. [dependencies]
  14. aya-log-common = { path = "../aya-log-common", version = "^0.1.14", default-features = false }
  15. aya-log-parser = { path = "../aya-log-parser", version = "^0.1.13", default-features = false }
  16. proc-macro2 = { workspace = true }
  17. quote = { workspace = true }
  18. syn = { workspace = true }
  19. [lib]
  20. proc-macro = true