-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
31 lines (26 loc) · 1.29 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
[package]
name = "cogent"
version = "0.6.3"
authors = ["Jonathan Woollett-Light <jonathanwoollettlight@gmail.com>"]
edition = "2018"
description = "Basic neural network library for classification."
license = "Apache-2.0"
exclude = ["tests","data"]
repository = "https://github.com/JonathanWoollett-Light/cogent"
documentation = "https://docs.rs/cogent/"
readme = "README.md"
keywords = ["deep-learning","neural-networks","machine-learning"]
catagories= ["science"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# Library ... # Purpose
[dependencies]
rand = "0.7.3" # Random number generation
crossterm="0.18.0" # Printing backpropagation progress
serde = {version = "1.0.106",features=["derive"]} # Serialize (Export) and deserialize (Import) `NeuralNetwork`
serde_json = "1.0.50" # JSON format for serde
arrayfire = "3.7.0" # Linear algebra and GPU compute
itertools = "0.9.0" # Nice zipping of iterators
ndarray = "0.14.0" # User interfacing
mnist_read = "1.0.0" # Reading MNSIT
[package.metadata.docs.rs]
rustdoc-args = [ "--html-in-header", "katex-header.html" ]