-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
63 lines (55 loc) · 1.55 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
62
63
[package]
name = "bismit"
version = "0.0.1"
authors = ["Nick Sanders <[email protected]>"]
description = "Biologically Inspired Sensory Motor Inference Toolkit"
documentation = "https://docs.rs/bismit"
homepage = "https://github.com/cogciprocate/bismit"
repository = "https://github.com/cogciprocate/bismit"
readme = "README.md"
# keywords = []
license = "GPL-2.0"
exclude = ["target/*", "*.png", "bak/*"]
# categories = []
[features]
profile = ["cpuprofiler"]
# Enables evaluation features, useful for testing and analysis.
eval = []
default = ["eval"]
[dependencies]
# ocl = { version = "*", git = "https://github.com/cogciprocate/ocl" }
ocl-extras = { path = "../ocl/ocl/ocl-extras" }
# ocl-extras = { version = "*", git = "https://github.com/cogciprocate/ocl" }
bitflags = "*"
rand = "*"
num = "*"
libc = "*"
enum_primitive = "*"
find_folder = "*"
time = "*"
twox-hash = "*"
colorify = { version = "*", features = ["enable_windows"] }
# futures = "0.1"
futures-cpupool = "*"
tokio-core = "*"
crossbeam = "0.3"
cpuprofiler = { version = "*", optional = true }
failure = "*"
[dependencies.ocl]
version = "*"
# path = "../ocl/ocl"
git = "https://github.com/cogciprocate/ocl"
branch = "futures-0.2"
# features = ["kernel_debug_sleep", "kernel_debug_print"]
[dependencies.futures-preview]
version = "~0.2.2"
# git = "https://github.com/rust-lang-nursery/futures-rs"
# path = "../../futures-rs/futures"
# [dev-dependencies]
# qutex = "*"
[dev-dependencies.qutex]
version = "*"
# path = "../qutex"
git = "https://github.com/cogciprocate/qutex"
[workspace]
members = ["eval"]