Cargo.toml 557 B

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