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
51 lines (47 loc) · 1.72 KB
/
Cargo.toml
File metadata and controls
51 lines (47 loc) · 1.72 KB
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
[package]
name = "mz-clusterd"
description = "Materialize's cluster server."
version = "0.128.0-dev.1"
edition.workspace = true
rust-version.workspace = true
publish = false
[lints]
workspace = true
[dependencies]
anyhow = "1.0.66"
axum = "0.7.5"
clap = { version = "4.5.23", features = ["derive", "env"] }
fail = { version = "0.5.1", features = ["failpoints"] }
futures = "0.3.25"
hyper = "1.4.1"
hyper-util = "0.1.6"
mz-alloc = { path = "../alloc" }
mz-alloc-default = { path = "../alloc-default", optional = true }
mz-build-info = { path = "../build-info" }
mz-cloud-resources = { path = "../cloud-resources" }
mz-compute = { path = "../compute" }
mz-cluster = { path = "../cluster" }
mz-compute-client = { path = "../compute-client" }
mz-dyncfgs = { path = "../dyncfgs" }
mz-http-util = { path = "../http-util" }
mz-metrics = { path = "../metrics" }
mz-orchestrator-tracing = { path = "../orchestrator-tracing" }
mz-ore = { path = "../ore", features = ["async", "tracing_"] }
mz-persist-client = { path = "../persist-client" }
mz-prof-http = { path = "../prof-http" }
mz-service = { path = "../service" }
mz-storage = { path = "../storage" }
mz-storage-client = { path = "../storage-client" }
mz-storage-types = { path = "../storage-types" }
mz-timely-util = { path = "../timely-util" }
mz-txn-wal = { path = "../txn-wal" }
tokio = { version = "1.38.0", features = ["fs", "rt", "sync", "test-util"] }
tower = "0.4.13"
tracing = "0.1.37"
workspace-hack = { version = "0.0.0", path = "../workspace-hack", optional = true }
[features]
default = ["tokio-console", "mz-alloc-default", "workspace-hack"]
jemalloc = ["mz-alloc/jemalloc"]
tokio-console = ["mz-ore/tokio-console"]
[package.metadata.cargo-udeps.ignore]
normal = ["mz-alloc-default", "workspace-hack"]