-
Notifications
You must be signed in to change notification settings - Fork 500
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (54 loc) · 1.76 KB
/
Cargo.toml
File metadata and controls
59 lines (54 loc) · 1.76 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
52
53
54
55
56
57
58
59
[package]
name = "mz-compute"
description = "Materialize's compute layer."
version = "0.0.0"
edition.workspace = true
rust-version.workspace = true
publish = false
[lints]
workspace = true
[dependencies]
anyhow.workspace = true
async-stream.workspace = true
bytesize.workspace = true
columnar.workspace = true
columnation.workspace = true
dec = { workspace = true, features = ["serde"] }
differential-dataflow.workspace = true
differential-dogs3.workspace = true
fail.workspace = true
futures.workspace = true
itertools.workspace = true
lgalloc.workspace = true
mz-cluster = { path = "../cluster" }
mz-cluster-client = { path = "../cluster-client" }
mz-compute-client = { path = "../compute-client" }
mz-compute-types = { path = "../compute-types" }
mz-dyncfg = { path = "../dyncfg" }
mz-dyncfgs = { path = "../dyncfgs" }
mz-expr = { path = "../expr" }
mz-metrics = { path = "../metrics" }
mz-ore = { path = "../ore", features = ["async", "process", "tracing", "columnar", "differential-dataflow", "region"] }
mz-proto = { path = "../proto" }
mz-persist-client = { path = "../persist-client" }
mz-persist-types = { path = "../persist-types" }
mz-repr = { path = "../repr" }
mz-storage-operators = { path = "../storage-operators" }
mz-storage-types = { path = "../storage-types" }
mz-timely-util = { path = "../timely-util" }
mz-txn-wal = { path = "../txn-wal" }
prometheus.workspace = true
prost.workspace = true
scopeguard.workspace = true
serde.workspace = true
smallvec = { workspace = true, features = ["serde", "union"] }
timely.workspace = true
tokio.workspace = true
tracing.workspace = true
uuid = { workspace = true, features = ["serde", "v4"] }
[target.'cfg(not(target_os = "macos"))'.dependencies]
core_affinity = "0.8.3"
[dev-dependencies]
proptest.workspace = true
[features]
default = []