-
Notifications
You must be signed in to change notification settings - Fork 28
/
Cargo.toml
49 lines (41 loc) · 1.45 KB
/
Cargo.toml
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
[package]
name = "declarative-dataflow"
version = "0.2.0"
authors = ["Nikolas Göbel <[email protected]>", "Frank McSherry <[email protected]>"]
edition = "2018"
description = "A reactive query engine built on Differential Dataflow."
documentation = "https://docs.rs/declarative-dataflow"
homepage = "https://github.com/comnik/declarative-dataflow"
repository = "https://github.com/comnik/declarative-dataflow.git"
keywords = ["differential", "dataflow", "datalog", "graphql", "query"]
license = "MIT"
[dependencies]
timely = { git = "https://github.com/TimelyDataflow/timely-dataflow", features = ["bincode"] }
differential-dataflow = { git = "https://github.com/TimelyDataflow/differential-dataflow" }
serde = "1"
serde_derive = "1"
log = "0.4"
num-rational = { version = "0.2", features = ["std", "serde"] }
timely_sort = "0.1.6"
uuid = { version = "0.7", features = ["serde"] }
serde_json = { version = "1", optional = true }
csv = { version = "1", optional = true }
chrono = { version = "0.4", optional = true }
graphql-parser = { version = "0.2.2", optional = true }
fixed = { version = "0.3.2", optional = true, features = ["serde"] }
[dev-dependencies]
env_logger = "0.5.6"
[features]
real-time = []
set-semantics = []
csv-source = ["csv", "chrono"]
json-source = ["serde_json", "chrono"]
graphql = ["graphql-parser", "serde_json"]
real = ["fixed"]
[profile.release]
opt-level = 3
debug = true
debug-assertions = false
rpath = false
lto = false
codegen-units = 4