Cargo.toml 466 B

123456789101112131415161718
  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. clap = { version = "4", features = ["derive"] }
  10. env_logger = "0.10"
  11. inventory = "0.2"
  12. integration-test-macros = { path = "../integration-test-macros" }
  13. lazy_static = "1"
  14. libc = { version = "0.2.105" }
  15. log = "0.4"
  16. object = { version = "0.30", default-features = false, features = ["std", "read_core", "elf"] }
  17. regex = "1"