dsmga2 0.2.0

Dependency Structure Matrix Genetic Algorithm II with two-edge graphical linkage model
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 = "dsmga2"
version = "0.2.0"
authors = ["Po-Hsuan Lai"]
build = false
exclude = [
    "benches/",
    "../benchmarks/",
    "../dsmga2-py/",
    "../DSMGA-II-TwoEdge/",
    "../.gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Dependency Structure Matrix Genetic Algorithm II with two-edge graphical linkage model"
homepage = "https://github.com/PoHsuanLai/dsmga2"
documentation = "https://docs.rs/dsmga2"
readme = "README.md"
keywords = [
    "genetic-algorithm",
    "optimization",
    "evolutionary",
    "linkage",
    "ga",
]
categories = [
    "algorithms",
    "science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/PoHsuanLai/dsmga2"

[features]
cli = ["indicatif"]
default = []

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

[[bin]]
name = "dsmga2_cli"
path = "src/bin/dsmga2_cli.rs"
required-features = ["cli"]

[[bin]]
name = "dsmga2_sweep"
path = "src/bin/dsmga2_sweep.rs"

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"

[[example]]
name = "checkpoint"
path = "examples/checkpoint.rs"

[[example]]
name = "custom_fitness"
path = "examples/custom_fitness.rs"

[[example]]
name = "linkage"
path = "examples/linkage.rs"

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

[dependencies.ahash]
version = "0.8"

[dependencies.bincode]
version = "1.3"

[dependencies.bitvec]
version = "1.0"

[dependencies.dashmap]
version = "6.1"

[dependencies.indicatif]
version = "0.17"
optional = true

[dependencies.rand]
version = "0.8"

[dependencies.rand_mt]
version = "4.2"

[dependencies.rayon]
version = "1.8"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.smallvec]
version = "1.11"

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