4
0

Cargo.toml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [package]
  2. name = "integration-test"
  3. version = "0.1.0"
  4. publish = false
  5. authors.workspace = true
  6. license.workspace = true
  7. repository.workspace = true
  8. homepage.workspace = true
  9. rust-version.workspace = true
  10. edition.workspace = true
  11. [dependencies]
  12. anyhow = { workspace = true, features = ["std"] }
  13. assert_matches = { workspace = true }
  14. aya = { path = "../../aya", version = "^0.13.1", default-features = false }
  15. aya-log = { path = "../../aya-log", version = "^0.2.1", default-features = false }
  16. aya-obj = { path = "../../aya-obj", version = "^0.2.1", default-features = false }
  17. integration-common = { path = "../integration-common", features = ["user"] }
  18. env_logger = { workspace = true }
  19. epoll = { workspace = true }
  20. futures = { workspace = true, features = ["std"] }
  21. libc = { workspace = true }
  22. log = { workspace = true }
  23. netns-rs = { workspace = true }
  24. object = { workspace = true, features = ["elf", "read_core", "std"] }
  25. rand = { workspace = true, features = ["thread_rng"] }
  26. rbpf = { workspace = true }
  27. test-case = { workspace = true }
  28. test-log = { workspace = true, features = ["log"] }
  29. tokio = { workspace = true, features = ["macros", "rt-multi-thread", "time"] }
  30. xdpilone = { workspace = true }
  31. [build-dependencies]
  32. anyhow = { workspace = true }
  33. aya-build = { path = "../../aya-build" }
  34. # TODO(https://github.com/rust-lang/cargo/issues/12375): this should be an artifact dependency, but
  35. # it's not possible to tell cargo to use `-Z build-std` to build it. We cargo-in-cargo in the build
  36. # script to build this, but we want to teach cargo about the dependecy so that cache invalidation
  37. # works properly.
  38. #
  39. # Finally note that *any* usage of `artifact = ...` in *any* Cargo.toml in the workspace breaks
  40. # workflows with stable cargo; stable cargo outright refuses to load manifests that use unstable
  41. # features.
  42. integration-ebpf = { path = "../integration-ebpf" }
  43. xtask = { path = "../../xtask" }