# 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" rust-version = "1.81.0" name = "genetic_algorithms" version = "1.6.0" authors = ["Luis Eduardo Imbernón "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Library for solving genetic algorithm problems" homepage = "https://github.com/leimbernon/rust_genetic_algorithms.git" documentation = "https://docs.rs/genetic_algorithms/latest/genetic_algorithms" readme = "README.md" keywords = [ "genetics", "algorithm", "ai", "artificial", "intelligence", ] categories = [ "emulators", "development-tools", "science", "simulation", ] license = "Apache-2.0" repository = "https://github.com/leimbernon/rust_genetic_algorithms.git" [lib] name = "genetic_algorithms" path = "src/lib.rs" [[test]] name = "structures" path = "tests/structures.rs" [[test]] name = "test_ga" path = "tests/test_ga.rs" [[test]] name = "test_helpers" path = "tests/test_helpers.rs" [[test]] name = "test_operations" path = "tests/test_operations.rs" [[test]] name = "test_population" path = "tests/test_population.rs" [[bench]] name = "crossover" path = "benches/crossover.rs" harness = false [[bench]] name = "mutation" path = "benches/mutation.rs" harness = false [[bench]] name = "selection" path = "benches/selection.rs" harness = false [[bench]] name = "survivor" path = "benches/survivor.rs" harness = false [dependencies.env_logger] version = "0.11.5" [dependencies.log] version = "0.4.22" features = [ "std", "serde", "kv_unstable", ] [dependencies.num_cpus] version = "1.15.0" [dependencies.rand] version = "0.8.5" [dev-dependencies.criterion] version = "0.5.1" [dev-dependencies.pprof] version = "0.13" features = [ "criterion", "flamegraph", ]