Cargo.toml 2.0 KB

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