# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "fast-neural-network" version = "0.7.0" authors = ["AbduEhab "] build = false exclude = ["benches/Results"] autobins = false autoexamples = false autotests = false autobenches = false description = "A heavily parallelized neural network library designed for speed and flexability." readme = "README.md" keywords = [ "machine_learning", "neural_network", "AI", "parallel", "data-science", ] license = "GPL-2.0" repository = "https://github.com/AbduEhab/Fast-Neural-Network" [profile.dev] opt-level = 0 [profile.dev.package."*"] opt-level = 3 strip = true [profile.release] opt-level = 3 lto = "fat" strip = true [lib] name = "fast_neural_network" path = "src/lib.rs" [[bin]] name = "fast-neural-network" path = "src/main.rs" [[bench]] name = "default-bench" path = "benches/default-bench.rs" harness = false [dependencies.indicatif] version = "0.17.8" features = ["rayon"] [dependencies.ndarray] version = "0.16.1" features = [ "serde", "rayon", "matrixmultiply-threading", ] [dependencies.rand] version = "0.8.5" [dependencies.rayon] version = "1.10.0" [dependencies.serde] version = "1.0.210" features = ["derive"] [dependencies.serde_json] version = "1.0.128" [dev-dependencies.criterion] version = "0.5.1" features = ["html_reports"]