Cargo.toml 487 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. aya-log = { path = "../../aya-log" }
  10. aya-obj = { path = "../../aya-obj" }
  11. libc = { version = "0.2.105" }
  12. log = "0.4"
  13. object = { version = "0.31", default-features = false, features = ["std", "read_core", "elf"] }
  14. rbpf = "0.2.0"
  15. regex = "1"
  16. tempfile = "3.3.0"
  17. tokio = { version = "1.24", features = ["rt", "rt-multi-thread", "sync", "time"] }