[package] name = "zenu-layer" version = "0.1.1" edition = "2021" description = "A simple neural network layer library." license = "MIT" repository = "https://github.com/bokutotu/zenu" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] zenu-matrix = { path = "../zenu-matrix", version = "0.1.2" } zenu-autograd = { path = "../zenu-autograd", version = "0.1.2" } rand = "0.8.5" rand_distr = "0.4.3" [dev-dependencies] zenu-test = { path = "../zenu-test" } serde_json = "1" [lints] workspace = true [profile.bench] debug = true [features] nvidia = ["zenu-matrix/nvidia", "zenu-autograd/nvidia"]