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
84 lines (76 loc) · 2.37 KB
/
Copy pathCargo.toml
File metadata and controls
84 lines (76 loc) · 2.37 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[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
chrono.workspace = true
columnar.workspace = true
columnation.workspace = true
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", "pager", "region"] }
mz-proto = { path = "../proto" }
mz-persist = { path = "../persist" }
mz-persist-client = { path = "../persist-client" }
mz-persist-types = { path = "../persist-types" }
mz-repr = { path = "../repr" }
mz-row-spine = { path = "../row-spine" }
mz-rocksdb = { path = "../rocksdb" }
mz-storage = { path = "../storage" }
mz-storage-client = { path = "../storage-client" }
mz-storage-operators = { path = "../storage-operators" }
mz-storage-types = { path = "../storage-types" }
mz-timely-util = { path = "../timely-util" }
mz-txn-wal = { path = "../txn-wal" }
num-traits.workspace = true
prometheus.workspace = true
prost.workspace = true
scopeguard.workspace = true
serde.workspace = true
smallvec = { workspace = true, features = ["serde", "union"] }
thiserror.workspace = true
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]
criterion.workspace = true
mz-secrets = { path = "../secrets" }
mz-storage-types = { path = "../storage-types", features = ["proptest"] }
proptest.workspace = true
rand.workspace = true
[features]
default = []
# Exposes internal types for benchmarks.
bench = []
[[bench]]
name = "correction"
harness = false
required-features = ["bench"]
[[bench]]
name = "columnar_merger_row"
harness = false
[[bench]]
name = "columnar_merge_batcher_row"
harness = false