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
34 lines (26 loc) · 771 Bytes
/
Cargo.toml
File metadata and controls
34 lines (26 loc) · 771 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
33
34
[package]
name = "timely"
version = "0.0.10"
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="*"
timely_communication="*"
byteorder="*"
time="*"
[dev-dependencies]
getopts="*"
rand="*"
[dev-dependencies.radix_sort]
git="https://github.com/frankmcsherry/radix-sort"