A rust crate used to decode the mnist dataset.
The API is a single function which returns a vector of images, it's implementation expects the files to be matching Yann LeCun's MNIST database.
pub fn read_mnist(data_path: String) -> Vec<Image>;
pub struct Image {
pixels: Vec<u8>,
label: u8
}