-
Notifications
You must be signed in to change notification settings - Fork 465
/
Copy pathCargo.toml
66 lines (62 loc) · 2.03 KB
/
Cargo.toml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "mz-sqllogictest"
description = "A driver for sqllogictest, a SQL correctness testing framework."
version = "0.0.1"
edition.workspace = true
rust-version.workspace = true
publish = false
[lints]
workspace = true
[dependencies]
anyhow = "1.0.66"
bytes = "1.3.0"
chrono = { version = "0.4.35", default-features = false, features = ["std"] }
clap = { version = "4.5.23", features = ["derive"] }
dec = "0.4.8"
fallible-iterator = "0.2.0"
futures = "0.3.25"
itertools = "0.12.1"
junit-report = "0.8.3"
md-5 = "0.10.5"
mz-build-info = { path = "../build-info" }
mz-catalog = { path = "../catalog" }
mz-controller = { path = "../controller" }
mz-dyncfgs = { path = "../dyncfgs" }
mz-environmentd = { path = "../environmentd", default-features = false }
mz-ore = { path = "../ore", features = ["async", "tracing_"] }
mz-orchestrator = { path = "../orchestrator" }
mz-orchestrator-process = { path = "../orchestrator-process" }
mz-orchestrator-tracing = { path = "../orchestrator-tracing" }
mz-persist-client = { path = "../persist-client" }
mz-pgrepr = { path = "../pgrepr" }
mz-repr = { path = "../repr" }
mz-secrets = { path = "../secrets" }
mz-server-core = { path = "../server-core" }
mz-service = { path = "../service" }
mz-sql = { path = "../sql" }
mz-sql-parser = { path = "../sql-parser" }
mz-storage-types = { path = "../storage-types" }
mz-tracing = { path = "../tracing" }
postgres-protocol = { version = "0.6.5" }
regex = "1.7.0"
reqwest = { version = "0.11.13", features = ["json"] }
shell-words = "1.1.0"
serde_json = "1.0.125"
tempfile = "3.14.0"
time = "0.3.17"
tracing = "0.1.37"
tokio = "1.38.0"
tokio-postgres = { version = "0.7.8", features = [
"with-chrono-0_4",
"with-uuid-1",
"with-serde_json-1",
] }
tokio-stream = { version = "0.1.11", features = ["net"] }
tower-http = { version = "0.5.2", features = ["cors"] }
uuid = "1.2.2"
walkdir = "2.3.2"
workspace-hack = { version = "0.0.0", path = "../workspace-hack", optional = true }
[package.metadata.cargo-udeps.ignore]
normal = ["workspace-hack"]
[features]
default = ["workspace-hack"]