[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"]