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
41 lines (38 loc) · 1.4 KB
/
Copy pathCargo.toml
File metadata and controls
41 lines (38 loc) · 1.4 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
[package]
name = "dataflow"
description = "Materialized's Timely and Differential Dataflow server."
version = "0.1.0"
edition = "2018"
publish = false
[lib]
path = "lib.rs"
[dependencies]
bincode = "1.2.1"
ccsr = { path = "../ccsr" }
comm = { path = "../comm" }
csv = "1.1.3"
dataflow-types = { path = "../dataflow-types" }
differential-dataflow = { git = "https://github.com/TimelyDataflow/differential-dataflow.git" }
dogsdogsdogs = { git = "https://github.com/TimelyDataflow/differential-dataflow.git" }
expr = { path = "../expr" }
futures = "0.3"
interchange = { path = "../interchange" }
lazy_static = "1.4"
log = "0.4"
notify = "4.0"
ore = { path = "../ore" }
pdqselect = "0.1.0"
prometheus = { git = "https://github.com/quodlibetor/rust-prometheus.git", branch = "include-unaggregated", default-features = false }
prometheus-static-metric = "0.2.0"
rdkafka = { version = "0.23.1", features = ["cmake-build", "ssl-vendored"] }
regex = "1.3.4"
repr = { path = "../repr" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.47"
timely = { git = "https://github.com/TimelyDataflow/timely-dataflow", features = ["bincode"] }
tokio = { version = "0.2", features = ["blocking", "fs", "rt-threaded"] }
tokio-util = { version = "0.2", features = ["codec"] }
url = { version = "2.1.1", features = ["serde"] }
uuid = { version = "0.8", features = ["serde", "v4"] }
[dev-dependencies]
pretty_assertions = "0.6.1"