[package]
edition = "2021"
name = "shrew-data"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Data loading, datasets, and batching for Shrew"
homepage = "https://github.com/ginozza/shrew"
readme = "README.md"
keywords = [
"deep-learning",
"machine-learning",
"tensor",
"autograd",
"neural-network",
]
categories = [
"science",
"mathematics",
]
license = "Apache-2.0"
repository = "https://github.com/ginozza/shrew"
[features]
default = []
image-folder = ["image"]
[lib]
name = "shrew_data"
path = "src/lib.rs"
[[test]]
name = "data_tests"
path = "tests/data_tests.rs"
[dependencies.image]
version = "0.25"
optional = true
[dependencies.rand]
version = "0.8"
[dependencies.rand_distr]
version = "0.4"
[dependencies.rayon]
version = "1.10"
[dependencies.shrew-core]
version = "0.1.0"
[dev-dependencies.shrew-cpu]
version = "0.1.0"