Cargo.toml 530 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. libc = { version = "0.2.105" }
  12. log = "0.4"
  13. matches = "0.1.8"
  14. object = { version = "0.31", default-features = false, features = [
  15. "std",
  16. "read_core",
  17. "elf",
  18. ] }
  19. rbpf = "0.2.0"
  20. tokio = { version = "1.24", default-features = false, features = ["time"] }
  21. [build-dependencies]
  22. cargo_metadata = "0.15.4"