-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 1.06 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
[package]
name = "declarative-server"
version = "0.1.0"
authors = ["Nikolas Göbel <me@nikolasgoebel.com>", "Frank McSherry <fmcsherry@me.com>"]
edition = "2018"
[dependencies]
jemallocator = "0.1.8"
timely = { git = "https://github.com/TimelyDataflow/timely-dataflow", features = ["bincode"] }
differential-dataflow = { git = "https://github.com/TimelyDataflow/differential-dataflow" }
declarative-dataflow = { path = "../", features = ["serde_json"] }
serde = "1"
serde_derive = "1"
serde_json = "1"
mio = "0.6.16"
mio-extras = "2.0.5"
slab = "0.4.1"
ws = { git = "https://github.com/comnik/ws-rs", rev = "8312a820959828a0022008495b9bace7a13edac8" }
log = "0.4"
env_logger = "0.5.6"
getopts = "0.2.18"
[features]
blocking = []
real-time = ["declarative-dataflow/real-time"]
bitemporal = []
csv-source = ["declarative-dataflow/csv-source"]
json-source = ["declarative-dataflow/json-source"]
graphql = ["declarative-dataflow/graphql"]
real = ["declarative-dataflow/real"]
[profile.release]
opt-level = 3
debug = true
debug-assertions = false
rpath = false
lto = false
codegen-units = 4