forked from TimelyDataflow/differential-dataflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (34 loc) · 987 Bytes
/
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
[package]
name = "differential-dataflow"
version = "0.7.0"
authors = ["Frank McSherry <[email protected]>"]
description = "An incremental data-parallel dataflow platform"
# These URLs point to more information about the repository
documentation = "https://docs.rs/differential-dataflow"
homepage = "https://github.com/frankmcsherry/differential-dataflow"
repository = "https://github.com/frankmcsherry/differential-dataflow.git"
keywords = ["differential", "dataflow"]
license = "MIT"
[dev-dependencies]
indexmap = "1.0.1"
rand="0.4"
byteorder="1"
itertools="^0.7"
graph_map = { git = "https://github.com/frankmcsherry/graph-map.git" }
serde_json = "1.0"
[dependencies]
serde = "1.0"
serde_derive = "1.0"
abomonation = "0.7"
abomonation_derive = "0.3"
timely_sort="0.1.6"
#timely = "0.7"
timely = { git = "https://github.com/frankmcsherry/timely-dataflow" }
fnv="1.0.2"
[profile.release]
opt-level = 3
debug = true
rpath = false
lto = false
debug-assertions = false
codegen-units=4