neat 1.0.2

Crate for working with NEAT in rust
Documentation
# 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 = "1.0.2"
authors = ["HyperCodec"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Crate for working with NEAT in rust"
homepage = "https://github.com/HyperCodec/neat"
readme = "README.md"
keywords = [
    "genetic",
    "machine-learning",
    "ai",
    "algorithm",
    "evolution",
]
categories = [
    "algorithms",
    "science",
    "simulation",
]
license = "MIT"
repository = "https://github.com/HyperCodec/neat"

[package.metadata.docs.rs]
features = ["serde"]
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = []
serde = [
    "dep:serde",
    "dep:serde-big-array",
]

[lib]
name = "neat"
path = "src/lib.rs"

[[example]]
name = "basic"
path = "examples/basic.rs"
required-features = ["genetic-rs/derive"]

[[example]]
name = "extra_genes"
path = "examples/extra_genes.rs"
required-features = ["genetic-rs/derive"]

[[example]]
name = "serde"
path = "examples/serde.rs"
required-features = ["serde"]

[dependencies.atomic_float]
version = "1.1.0"

[dependencies.bitflags]
version = "2.11.0"

[dependencies.genetic-rs]
version = "1.3.0"
features = ["rayon"]

[dependencies.lazy_static]
version = "1.5.0"

[dependencies.rayon]
version = "1.11.0"

[dependencies.replace_with]
version = "0.1.8"

[dependencies.serde]
version = "1.0.228"
features = ["derive"]
optional = true

[dependencies.serde-big-array]
version = "0.5.1"
optional = true

[dev-dependencies.serde_json]
version = "1.0.149"

[dev-dependencies.serde_path_to_error]
version = "0.1.20"

[profile.test]
opt-level = 3