forked from MaterializeInc/materialize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 654 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 654 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "mz-pgtest"
description = "Postgres wire protocol test framework."
version = "0.0.0"
edition.workspace = true
rust-version.workspace = true
publish = false
[lints]
workspace = true
[dependencies]
anyhow = "1.0.66"
bytes = "1.3.0"
clap = { version = "3.2.24", features = ["derive"] }
datadriven = "0.6.0"
fallible-iterator = "0.2.0"
mz-ore = { path = "../ore", features = ["cli"] }
postgres-protocol = { version = "0.6.5" }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.109"
workspace-hack = { version = "0.0.0", path = "../workspace-hack" }
[package.metadata.cargo-udeps.ignore]
normal = ["workspace-hack"]