moors 0.2.10

Solving multi-objective optimization problems using genetic algorithms.
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 = "moors"
version = "0.2.10"
authors = ["Andrés Sandoval Abarca <andres.sndbrca@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Solving multi-objective optimization problems using genetic algorithms."
readme = "README.md"
license = "MIT"
repository = "https://github.com/andresliszt/moo-rs"

[lib]
name = "moors"
crate-type = [
    "cdylib",
    "rlib",
]
path = "src/lib.rs"

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

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

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

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

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

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

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

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

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

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

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

[dependencies.derive_builder]
version = "0.20.2"

[dependencies.faer]
version = "0.23.1"
features = ["std"]
default-features = false

[dependencies.faer-ext]
version = "0.7.1"
features = ["ndarray"]

[dependencies.ndarray]
version = "0.16.1"

[dependencies.ndarray-stats]
version = "0.6.0"

[dependencies.num-traits]
version = "0.2.19"

[dependencies.ordered-float]
version = "5.0.0"

[dependencies.paste]
version = "1.0.15"

[dependencies.rand]
version = "0.9.2"

[dependencies.rand_distr]
version = "0.5.1"

[dependencies.thiserror]
version = "2.0.17"

[dev-dependencies.codspeed-criterion-compat]
version = "4"

[dev-dependencies.criterion]
version = "0.5.1"

[dev-dependencies.rstest]
version = "0.26.1"

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage,coverage_nightly)"]

[profile.coverage]
lto = false
codegen-units = 1
inherits = "release"

[profile.dev]
incremental = true

[profile.test]
incremental = true