[package] name = "auto-diff-ann" version = "0.5.9" authors = ["yguan "] edition = "2021" description = """ A neural network library in Rust. """ documentation = "https://docs.rs/auto-diff" homepage = "https://github.com/pipehappy1/auto-diff" repository = "https://github.com/pipehappy1/auto-diff" readme = "README.md" license = "MIT" keywords = ["machine-learning", "neural-network", "deep-learning"] exclude = ["/dev/**"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] rand = "0.8" rand_distr = "0.4" tensor-rs = { path = "../tensor-rs", version = "0.5.9" } auto-diff = { path = "../auto-diff", version = "0.5.9" } auto-diff-data-pipe = { path = "../data-pipe", version = "0.5.9" } [dev-dependencies] # one backend openblas-src = "0.10" # or another backend of your choice auto-diff-data-pipe = { path = "../data-pipe", version = "0.5.9" } tensorboard-rs = { path = "../tensorboard-rs", version = "0.5.9" } bincode = {version = "1.3.3"}