# 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 = "smyl" version = "0.1.4" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Artificial Neuronal Network in Rust" readme = "README.md" keywords = [ "machine-learning", "neural-networks", "rust", "deep-learning", ] categories = [ "science::neuroscience", "mathematics", "computer-vision", ] license-file = "LICENSE" repository = "https://github.com/galitan-dev/smyl" [profile.dev] lto = "thin" [profile.release] opt-level = 3 lto = "fat" codegen-units = 1 debug = 2 panic = "abort" [profile.test] lto = "off" [lib] name = "smyl" path = "src/lib.rs" [[example]] name = "mnist" path = "examples/mnist/main.rs" [[example]] name = "hello" path = "examples/hello.rs" [[example]] name = "macro" path = "examples/macro.rs" [[bench]] name = "smyl" path = "benches/smyl.rs" harness = false [dependencies.flate2] version = "~1.0" optional = true [dependencies.rand] version = "~0.8" optional = true [dependencies.serde] version = "~1.0" optional = true [dependencies.smyl-macros] version = "0.1.4" optional = true [dev-dependencies.criterion] version = "~0.5" features = ["html_reports"] [dev-dependencies.serde_json] version = "~1.0" [features] default = ["random"] full = [ "macros", "idx3", "serde", "random", ] idx3 = ["flate2"] macros = ["smyl-macros"] random = ["rand"] serde = [ "smyl-macros/serde", "dep:serde", ] unsafe = []