evolve 0.4.0

A generic, composable genetic algorithm framework for 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 = "2024"
name = "evolve"
version = "0.4.0"
authors = ["Michael du Plessis"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A generic, composable genetic algorithm framework for Rust"
readme = "README.md"
keywords = [
    "genetic-algorithm",
    "evolutionary",
    "optimization",
    "metaheuristic",
]
categories = [
    "artificial-intelligence",
    "algorithms",
]
license = "MIT"
repository = "https://github.com/MichaelDuPlessis/evolve"

[features]
parallel = ["dep:pooled"]

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

[[test]]
name = "custom_grammar"
path = "tests/custom_grammar.rs"

[[test]]
name = "ga"
path = "tests/ga.rs"

[[test]]
name = "ge"
path = "tests/ge.rs"

[[test]]
name = "grammar_macro"
path = "tests/grammar_macro.rs"

[[test]]
name = "parallel"
path = "tests/parallel.rs"

[[bench]]
name = "algorithm"
path = "benches/algorithm.rs"
harness = false

[[bench]]
name = "genetic_operators"
path = "benches/genetic_operators.rs"
harness = false

[dependencies.evolve-derive]
version = "0.1"

[dependencies.pooled]
version = "0.3"
optional = true

[dependencies.rand]
version = "0.10.0"

[dependencies.vecpool]
version = "0.1.0"

[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]