Cargo.toml 613 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "aya-log-ebpf-macros"
  3. version = "0.1.0"
  4. description = "Proc macros used by aya-log-ebpf"
  5. authors.workspace = true
  6. license.workspace = true
  7. repository.workspace = true
  8. homepage.workspace = true
  9. rust-version.workspace = true
  10. edition.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