Cargo.toml 748 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "mz-test-util"
  3. description = "Utilities for testing Materialize"
  4. version = "0.0.0"
  5. edition.workspace = true
  6. rust-version.workspace = true
  7. publish = false
  8. [lints]
  9. workspace = true
  10. [dependencies]
  11. anyhow = "1.0.98"
  12. chrono = { version = "0.4.39", default-features = false, features = ["std"] }
  13. mz-kafka-util = { path = "../../src/kafka-util" }
  14. mz-ore = { path = "../../src/ore", features = ["async"] }
  15. rand = "0.8.5"
  16. rdkafka = { version = "0.29.0", features = ["cmake-build", "ssl-vendored", "libz-static", "zstd"] }
  17. tokio = "1.44.1"
  18. tokio-postgres = { version = "0.7.8" }
  19. tracing = "0.1.37"
  20. workspace-hack = { version = "0.0.0", path = "../../src/workspace-hack" }
  21. [package.metadata.cargo-udeps.ignore]
  22. normal = ["workspace-hack"]