forked from TimelyDataflow/timely-dataflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (25 loc) · 736 Bytes
/
Cargo.toml
File metadata and controls
32 lines (25 loc) · 736 Bytes
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
[package]
name = "timely"
version = "0.0.14"
authors = ["Frank McSherry <fmcsherry@me.com>"]
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"
[dependencies.timely_communication]
path="./communication"
[features]
default=[]
logging=[]
[dependencies]
abomonation="^0.4.2"
timely_sort="0.1.3"
#timely_communication="^0.1.4"
byteorder="0.4.2"
time="0.1.34"
[dev-dependencies]
getopts="0.2.14"
rand="0.3.13"