[package]
edition = "2024"
name = "mnist_reader"
version = "0.1.1"
authors = ["kujirahand <web@kujirahand.com>"]
build = false
exclude = ["mnist-data"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Download the MNIST dataset and simply read it."
documentation = "https://docs.rs/mnist_reader"
readme = "README.md"
keywords = [
"mnist",
"dataset",
"reader",
"ml",
]
categories = [
"science",
"computer-vision",
]
license = "MIT"
repository = "https://github.com/kujirahand/mnist_reader-rust"
[lib]
name = "mnist_reader"
path = "src/lib.rs"
[[bin]]
name = "mnist_reader"
path = "src/main.rs"
[dependencies.flate2]
version = "1.1.1"
[dependencies.ureq]
version = "3.0.11"