12345678910111213141516171819202122232425 |
- [package]
- name = "mz-test-util"
- description = "Utilities for testing Materialize"
- version = "0.0.0"
- edition.workspace = true
- rust-version.workspace = true
- publish = false
- [lints]
- workspace = true
- [dependencies]
- anyhow = "1.0.98"
- chrono = { version = "0.4.39", default-features = false, features = ["std"] }
- mz-kafka-util = { path = "../../src/kafka-util" }
- mz-ore = { path = "../../src/ore", features = ["async"] }
- rand = "0.8.5"
- rdkafka = { version = "0.29.0", features = ["cmake-build", "ssl-vendored", "libz-static", "zstd"] }
- tokio = "1.44.1"
- tokio-postgres = { version = "0.7.8" }
- tracing = "0.1.37"
- workspace-hack = { version = "0.0.0", path = "../../src/workspace-hack" }
- [package.metadata.cargo-udeps.ignore]
- normal = ["workspace-hack"]
|