Cargo.toml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 = ["std"] }
  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. rand = { workspace = true, features = ["thread_rng"] }
  28. rbpf = { workspace = true }
  29. test-case = { workspace = true }
  30. test-log = { workspace = true, features = ["log"] }
  31. tokio = { workspace = true, features = ["macros", "rt-multi-thread", "time"] }
  32. xdpilone = { workspace = true }
  33. [build-dependencies]
  34. anyhow = { workspace = true }
  35. aya-build = { path = "../../aya-build" }
  36. # TODO(https://github.com/rust-lang/cargo/issues/12375): this should be an artifact dependency, but
  37. # it's not possible to tell cargo to use `-Z build-std` to build it. We cargo-in-cargo in the build
  38. # script to build this, but we want to teach cargo about the dependecy so that cache invalidation
  39. # works properly.
  40. #
  41. # Finally note that *any* usage of `artifact = ...` in *any* Cargo.toml in the workspace breaks
  42. # workflows with stable cargo; stable cargo outright refuses to load manifests that use unstable
  43. # features.
  44. integration-ebpf = { path = "../integration-ebpf" }
  45. xtask = { path = "../../xtask" }