Cargo.toml 549 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. 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. tempfile = "3.3.0"
  21. tokio = { version = "1.24", default-features = false, features = ["time"] }
  22. [build-dependencies]
  23. cargo_metadata = "0.15.4"