Cargo.toml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. [package]
  2. name = "integration-test"
  3. version = "0.1.0"
  4. edition = "2021"
  5. publish = false
  6. [dependencies]
  7. anyhow = { workspace = true, default-features = true }
  8. assert_matches = { workspace = true }
  9. aya = { workspace = true }
  10. aya-log = { workspace = true }
  11. aya-obj = { workspace = true }
  12. libc = { workspace = true }
  13. log = { workspace = true }
  14. object = { workspace = true }
  15. rbpf = { workspace = true }
  16. tokio = { workspace = true, default-features = false, features = [
  17. "macros",
  18. "time",
  19. ] }
  20. [build-dependencies]
  21. cargo_metadata = { workspace = true }
  22. # TODO(https://github.com/rust-lang/cargo/issues/12375): this should be an artifact dependency, but
  23. # it's not possible to tell cargo to use `-Z build-std` to build it. We cargo-in-cargo in the build
  24. # script to build this, but we want to teach cargo about the dependecy so that cache invalidation
  25. # works properly.
  26. #
  27. # Note also that https://github.com/rust-lang/cargo/issues/10593 occurs when `target = ...` is added
  28. # to an artifact dependency; it seems possible to work around that by setting `resolver = "1"` in
  29. # Cargo.toml in the workspace root.
  30. #
  31. # Finally note that *any* usage of `artifact = ...` in *any* Cargo.toml in the workspace breaks
  32. # workflows with stable cargo; stable cargo outright refuses to load manifests that use unstable
  33. # features.
  34. integration-ebpf = { path = "../integration-ebpf" }
  35. xtask = { workspace = true }