-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (36 loc) · 1 KB
/
Copy pathCargo.toml
File metadata and controls
42 lines (36 loc) · 1 KB
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
[package]
name = "nn_from_scratch"
version = "0.2.0"
edition = "2021"
authors = ["gbPagano <guilhermebpagano@gmail.com>"]
license = "MIT"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
approx = "0.5.1"
bincode = "1.3.3"
blas-src = { version = "0.10.0", features = ["openblas"] }
criterion = "0.5.1"
chrono = "0.4.42"
clap = { version = "4.5.51", features = ["derive"] }
ctrlc = "3.4.7"
csv = "1.3.0"
itertools = "0.12.1"
kdam = { version = "0.5.1", features = ["rich"] }
ndarray = { version = "0.15.6", features = ["blas", "approx-0_5", "serde", "rayon"] }
rayon = "1.10"
ndarray-csv = "0.5.2"
ndarray-rand = "0.14.0"
ndarray-stats = "0.5.1"
num-traits = "0.2.18"
openblas-src = { version = "0.10.9", features = ["system"] }
rand = "0.8.5"
rstest = "0.18.2"
rustfft = "6.2.0"
serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.113"
[lib]
path = "rust/src/lib.rs"
[[bin]]
name = "mnist"
path = "rust/src/bin/mnist.rs"