Cargo.toml 687 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "integration-test"
  3. version = "0.1.0"
  4. edition = "2021"
  5. publish = false
  6. [dependencies]
  7. anyhow = "1"
  8. assert_matches = "1.5.0"
  9. aya = { path = "../../aya" }
  10. aya-log = { path = "../../aya-log" }
  11. aya-obj = { path = "../../aya-obj" }
  12. libc = { version = "0.2.105" }
  13. log = "0.4"
  14. object = { version = "0.31", default-features = false, features = [
  15. "elf",
  16. "read_core",
  17. "std",
  18. ] }
  19. rbpf = "0.2.0"
  20. tokio = { version = "1.24", default-features = false, features = [
  21. "macros",
  22. "time",
  23. ] }
  24. [build-dependencies]
  25. cargo_metadata = { version = "0.15.4", default-features = false }
  26. which = { version = "4.4.0", default-features = false }
  27. xtask = { path = "../../xtask" }