4
0

Cargo.toml 702 B

12345678910111213141516171819202122232425
  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-log = { path = "../../aya-log" }
  10. aya-obj = { path = "../../aya-obj" }
  11. clap = { version = "4", features = ["derive"] }
  12. env_logger = "0.10"
  13. futures-core = "0.3"
  14. inventory = "0.3"
  15. integration-test-macros = { path = "../integration-test-macros" }
  16. lazy_static = "1"
  17. libc = { version = "0.2.105" }
  18. log = "0.4"
  19. object = { version = "0.31", default-features = false, features = ["std", "read_core", "elf"] }
  20. rbpf = "0.2.0"
  21. regex = "1"
  22. tempfile = "3.3.0"
  23. libtest-mimic = "0.6.0"
  24. tokio = { version = "1.24", features = ["rt", "rt-multi-thread", "sync", "time"] }