Cargo.toml 684 B

123456789101112131415161718192021222324
  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. libc = { version = "0.2.105" }
  17. log = "0.4"
  18. object = { version = "0.31", default-features = false, features = ["std", "read_core", "elf"] }
  19. rbpf = "0.2.0"
  20. regex = "1"
  21. tempfile = "3.3.0"
  22. libtest-mimic = "0.6.0"
  23. tokio = { version = "1.24", features = ["rt", "rt-multi-thread", "sync", "time"] }