# 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 = "neat" version = "0.5.1" authors = ["Inflectrix"] description = "Crate for working with NEAT in rust" homepage = "https://github.com/inflectrix/neat" readme = "README.md" keywords = [ "genetic", "machine-learning", "ai", "algorithm", "evolution", ] categories = [ "algorithms", "science", "simulation", ] license = "MIT" repository = "https://github.com/inflectrix/neat" [package.metadata.docs.rs] features = ["serde"] rustdoc-args = [ "--cfg", "docsrs", ] [dependencies.bitflags] version = "2.5.0" [dependencies.genetic-rs] version = "0.5.1" features = ["derive"] [dependencies.lazy_static] version = "1.4.0" [dependencies.rand] version = "0.8.5" [dependencies.rayon] version = "1.8.1" optional = true [dependencies.serde] version = "1.0.197" features = ["derive"] optional = true [dependencies.serde-big-array] version = "0.5.1" optional = true [dev-dependencies.bincode] version = "1.3.3" [dev-dependencies.serde_json] version = "1.0.114" [features] crossover = ["genetic-rs/crossover"] default = ["max-index"] max-index = [] rayon = [ "genetic-rs/rayon", "dep:rayon", ] serde = [ "dep:serde", "dep:serde-big-array", ]