-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
44 lines (37 loc) · 997 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
41
42
43
44
[package]
name = "primitiv"
version = "0.3.0"
authors = ["Hiroki Teranishi <[email protected]>"]
description = "A Neural Network Toolkit."
keywords = ["deep-learning", "neural-networks", "machine-learning"]
license = "Apache-2.0"
repository = "https://github.com/primitiv/primitiv-rust"
readme = "README.md"
[dependencies]
backtrace = "0.3"
lazy_static = "1.0"
libc = "0.2"
primitiv-sys = { version = "0.3", path = "primitiv-sys" }
primitiv-derive = { version = "0.1", path = "primitiv-derive" }
serde = { version = "1.0", optional = true }
[dev-dependencies]
rand = "0.5"
serde_derive = "1.0"
serde_json = "1.0"
[features]
eigen = ["primitiv-sys/eigen"]
cuda = ["primitiv-sys/cuda"]
opencl = ["primitiv-sys/opencl"]
serialize = ["serde"]
[[example]]
name = "xor"
path = "examples/xor/xor.rs"
[[example]]
name = "mnist"
path = "examples/mnist/mnist.rs"
[[example]]
name = "ptb_rnnlm"
path = "examples/ptb/ptb_rnnlm.rs"
[[example]]
name = "encdec"
path = "examples/encdec/encdec.rs"