-
Notifications
You must be signed in to change notification settings - Fork 184
/
Cargo.toml
61 lines (52 loc) · 1.36 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
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "differential-dataflow"
version = "0.13.1"
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/TimelyDataflow/differential-dataflow"
repository = "https://github.com/TimelyDataflow/differential-dataflow.git"
keywords = ["differential", "dataflow"]
license = "MIT"
readme = "README.md"
edition="2021"
[workspace]
members = [
".",
# "advent_of_code_2017",
"dogsdogsdogs",
"experiments",
"interactive",
"server",
"server/dataflows/degr_dist",
"server/dataflows/neighborhood",
"server/dataflows/random_graph",
"server/dataflows/reachability",
#"tpchlike",
"doop"
]
[dev-dependencies]
bincode = "1.3.1"
indexmap = "2.1"
rand="0.4"
byteorder="1"
itertools="^0.13"
serde_json = "1.0"
graph_map = "0.1"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
fnv="1.0.2"
timely = {workspace = true}
[workspace.dependencies]
timely = { version = "0.14", default-features = false }
#timely = { path = "../timely-dataflow/timely/", default-features = false }
[features]
default = ["timely/getopts"]
[profile.release]
opt-level = 3
debug = true
rpath = false
lto = true
debug-assertions = false
codegen-units = 4