Cargo.toml 381 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "aya-log-ebpf"
  3. version = "0.1.0"
  4. edition = "2018"
  5. [dependencies]
  6. aya-bpf = { git = "https://github.com/aya-rs/aya", branch = "main" }
  7. aya-log-common = { path = "../aya-log-common" }
  8. ufmt = "0.1.0"
  9. [lib]
  10. path = "src/lib.rs"
  11. [profile.dev]
  12. panic = "abort"
  13. debug = 1
  14. opt-level = 2
  15. overflow-checks = false
  16. [profile.release]
  17. panic = "abort"
  18. [workspace]
  19. members = []