-
Notifications
You must be signed in to change notification settings - Fork 276
/
Copy pathCargo.toml
40 lines (32 loc) · 953 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 = "timely"
version = "0.6.0"
authors = ["Frank McSherry <[email protected]>"]
description = "A low-latency data-parallel dataflow system in Rust"
# These URLs point to more information about the repository
documentation = "https://frankmcsherry.github.com/timely-dataflow"
homepage = "https://github.com/frankmcsherry/timely-dataflow"
repository = "https://github.com/frankmcsherry/timely-dataflow.git"
keywords = ["timely", "dataflow"]
license = "MIT"
#build = "booktests.rs"
[dependencies]
abomonation = { git = "https://github.com/frankmcsherry/abomonation" }
abomonation_derive = "0.3"
#timely_communication = "0.6"
timely_communication = { path = "./communication"}
byteorder="1"
time="0.1.34"
bytes = { path = "./bytes" }
[dev-dependencies]
timely_sort="0.1.6"
rand="0.4"
#skeptic = "0.12"
#[build-dependencies]
#skeptic = "0.12"
[profile.release]
opt-level = 3
debug = true
rpath = false
lto = true
debug-assertions = false