4
0

Cargo.toml 587 B

1234567891011121314151617181920
  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. [dependencies]
  12. aya-log-common = { path = "../aya-log-common", version = "^0.1.14", default-features = false }
  13. aya-log-parser = { path = "../aya-log-parser", version = "^0.1.13", default-features = false }
  14. proc-macro2 = { workspace = true }
  15. quote = { workspace = true }
  16. syn = { workspace = true }
  17. [lib]
  18. proc-macro = true