-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
54 lines (47 loc) · 1.21 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
[package]
name = "leaf"
description = "Machine Learning Framework for Hackers"
version = "0.3.0"
authors = [
"Maximilian Goisser <max@autumnai.com>",
"Michael Hirn <mj@autumnai.com>",
# author of hard-fork:
"Jony <jonysy@users.noreply.github.com>"
]
repository = "https://github.com/autumnai/leaf"
homepage = "https://github.com/autumnai/leaf"
documentation = "http://autumnai.github.io/leaf"
readme = "README.md"
keywords = ["deep-learning", "neural-networks", "machine-learning", "framework"]
license = "MIT OR Apache-2.0"
build = "build.rs"
[dependencies]
capnp = "0.8.17"
clippy = { version = "0.0.212", optional = true }
log = "0.4.3"
num = "0.2.0"
rand = "0.5.5"
timeit = "0.1.2"
[dependencies.parenchyma]
path = "../parenchyma"
[dependencies.parenchyma-blas]
path = "../parenchyma/crates/parenchyma-blas"
[dependencies.parenchyma-deep]
path = "../parenchyma/crates/parenchyma-deep"
[dependencies.parenchyma-ml]
path = "../parenchyma/crates/parenchyma-ml"
[build-dependencies]
capnpc = "0.6.1"
[dev-dependencies]
env_logger = "0.3"
[features]
dev = []
unstable = [] # for travis-cargo
lint = ["clippy"]
[profile.bench]
opt-level = 3
debug = false
rpath = false
lto = false
debug-assertions = false
codegen-units = 1