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 (49 loc) · 1.82 KB
/
Copy pathCargo.toml
File metadata and controls
51 lines (49 loc) · 1.82 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-compute"
description = "Materialize's compute layer."
version = "0.0.0"
edition.workspace = true
rust-version.workspace = true
publish = false
[dependencies]
anyhow = "1.0.66"
async-trait = "0.1.68"
bytesize = "1.1.0"
clap = { version = "3.2.24", features = ["derive", "env"] }
crossbeam-channel = "0.5.8"
dec = { version = "0.4.8", features = ["serde"] }
differential-dataflow = "0.12.0"
dogsdogsdogs = "0.1.0"
futures = "0.3.25"
itertools = "0.10.5"
lgalloc = "0.1"
mz-build-info = { path = "../build-info" }
mz-cluster = { path = "../cluster" }
mz-cluster-client = { path = "../cluster-client" }
mz-compute-client = { path = "../compute-client" }
mz-compute-types = { path = "../compute-types" }
mz-expr = { path = "../expr" }
mz-ore = { path = "../ore", features = ["async", "tracing_"] }
mz-persist-client = { path = "../persist-client" }
mz-persist-txn = { path = "../persist-txn" }
mz-persist-types = { path = "../persist-types" }
mz-pid-file = { path = "../pid-file" }
mz-prof = { path = "../prof" }
mz-repr = { path = "../repr" }
mz-service = { path = "../service" }
mz-storage-operators = { path = "../storage-operators" }
mz-storage-types = { path = "../storage-types" }
mz-timely-util = { path = "../timely-util" }
once_cell = "1.16.0"
prometheus = { version = "0.13.3", default-features = false }
scopeguard = "1.1.0"
serde = { version = "1.0.152", features = ["derive"] }
smallvec = { version = "1.10.0", features = ["serde", "union"] }
timely = { version = "0.12.0", default-features = false, features = ["bincode"] }
tokio = { version = "1.32.0", features = ["fs", "rt", "sync", "net"] }
tracing = "0.1.37"
uuid = { version = "1.2.2", features = ["serde", "v4"] }
workspace-hack = { version = "0.0.0", path = "../workspace-hack" }
[package.metadata.cargo-udeps.ignore]
# only used on linux
normal = ["inotify", "workspace-hack"]