Cargo.toml 1.8 KB

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