-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (41 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
48 lines (41 loc) · 1.28 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
[package]
name = "declarative-dataflow"
version = "0.1.0"
authors = ["Nikolas Göbel <me@nikolasgoebel.com>", "Frank McSherry <fmcsherry@me.com>"]
edition = "2018"
description = "A reactive query engine built on Differential Dataflow."
repository = "https://github.com/comnik/declarative-dataflow.git"
keywords = ["differential", "dataflow", "datalog", "graphql", "query"]
license = "MIT"
[dependencies]
jemallocator = "0.1.8"
timely = { git = "https://github.com/TimelyDataflow/timely-dataflow", features = ["bincode"] }
# differential-dataflow = { git = "https://github.com/TimelyDataflow/differential-dataflow" }
differential-dataflow = {path = "/Users/david/Projects/David/differential-dataflow/"}
abomonation = "0.7"
abomonation_derive = "0.3"
serde = "1"
serde_derive = "1"
serde_json = "1"
mio = "0.6.16"
slab = "0.4.1"
ws = { git = "https://github.com/comnik/ws-rs" }
log = "0.4"
env_logger = "0.5.6"
getopts = "0.2.18"
num-rational = { version = "0.2", features = ["std", "serde"] }
timely_sort = "0.1.6"
csv = { version = "1", optional = true }
chrono = { version = "0.4", optional = true }
[features]
set-semantics = []
csv-source = ["csv", "chrono"]
[[bin]]
name = "server"
[profile.release]
opt-level = 3
debug = true
debug-assertions = false
rpath = false
lto = false
codegen-units = 4