-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 726 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (26 loc) · 726 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
[package]
name = "pyrus-nn"
version = "0.2.1"
authors = ["Miles Granger <miles59923@gmail.com>"]
edition = "2018"
license-file = "LICENSE"
repository = "https://github.com/milesgranger/pyrus-nn"
description = "Micro Neural Network framework"
readme = "README.md"
[lib]
name = "pyrus_nn"
crate-type = ["cdylib", "lib"]
[dependencies]
ndarray = {version = "^0.12", default-features = false, features = ["serde-1"]}
ndarray-rand = "^0.9"
ndarray-parallel = "^0.9"
rand = "^0.6"
float-cmp = "^0.5.1"
serde = "^1.0"
serde_yaml = "^0.8"
serde_json = "^1.0"
serde_derive = "^1.0"
typetag = "^0.1"
pyo3 = { version = "0.5.2", features = ["extension-module"], default-features = false}
[dev-dependencies]
pretty_assertions = "^0.6"