-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
34 lines (30 loc) · 891 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
[package]
name = "mnist"
description = "MNIST data set parser."
version = "0.6.0"
authors = ["David McNeil <[email protected]>"]
repository = "https://github.com/davidMcneil/mnist"
documentation = "https://docs.rs/mnist"
keywords = ["mnist", "machine", "learning", "machine-learning", "images"]
readme = "README.md"
license = "MIT"
exclude = [
"data/*",
"data_sets/*",
]
edition = "2018"
[features]
default = []
download = ["curl", "pbr", "flate2"]
[dependencies]
byteorder = "1.0.0"
log = "0.4"
# Used to download datasets
curl = {version = "0.4", optional = true}
pbr = {version = "1.0", optional = true}
flate2 = {version = "1.0.2", optional = true, features = ["rust_backend"], default-features = false}
[dev-dependencies]
ndarray = "0.14"
image = "0.23"
# show-image is used to visualize datasets in a pop-up window
show-image = {version = "0.6", features = ["image"]}