1234567891011121314151617181920212223 |
- [package]
- name = "mz-metabase-smoketest"
- description = "A simple smoke test for Metabase and Materialize."
- version = "0.0.0"
- edition.workspace = true
- rust-version.workspace = true
- publish = false
- [lints]
- workspace = true
- [dependencies]
- anyhow = "1.0.98"
- itertools = "0.14.0"
- mz-metabase = { path = "../../../src/metabase" }
- mz-ore = { path = "../../../src/ore", features = ["network", "async", "test"] }
- tokio = { version = "1.44.1", features = ["macros"] }
- 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"]
|