4
0

Cargo.toml 561 B

12345678910111213141516171819202122
  1. [package]
  2. name = "integration-test"
  3. version = "0.1.0"
  4. edition = "2021"
  5. publish = false
  6. [dependencies]
  7. anyhow = "1"
  8. aya = { path = "../../aya" }
  9. aya-obj = { path = "../../aya-obj" }
  10. clap = { version = "4", features = ["derive"] }
  11. env_logger = "0.10"
  12. inventory = "0.3"
  13. integration-test-macros = { path = "../integration-test-macros" }
  14. lazy_static = "1"
  15. libc = { version = "0.2.105" }
  16. log = "0.4"
  17. object = { version = "0.30", default-features = false, features = ["std", "read_core", "elf"] }
  18. rbpf = "0.1.0"
  19. regex = "1"
  20. tempfile = "3.3.0"
  21. libtest-mimic = "0.6.0"