forked from hydro-project/hydro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (40 loc) · 884 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
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "benches"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[dev-dependencies]
criterion = { version = "0.3", features = [ "async_tokio" ] }
hydroflow = { path = "../hydroflow" }
lazy_static = "1.4.0"
# pprof = { version = "0.6", features = [ "flamegraph", "criterion" ] }
rand = "0.8.4"
seq-macro = "0.2"
timely = "*"
differential-dataflow = "*"
tokio = { version = "1.0", features = [ "rt-multi-thread" ] }
[[bench]]
name = "arithmetic"
harness = false
[[bench]]
name = "fan_in"
harness = false
[[bench]]
name = "fan_out"
harness = false
[[bench]]
name = "fork_join"
harness = false
[[bench]]
name = "identity"
harness = false
[[bench]]
name = "upcase"
harness = false
[[bench]]
name = "join"
harness = false
[[bench]]
name = "reachability"
harness = false