-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (33 loc) · 898 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "moga"
description = "A multi-objective genetic algorithm framework"
keywords = ["genetic", "evolutionary", "algorithm", "framework", "closures"]
categories = ["algorithms", "concurrency", "science"]
repository = "https://github.com/ArmoredPony/moga"
documentation = "https://docs.rs/moga"
license = "MIT"
version = "0.2.0"
edition = "2021"
[dependencies]
itertools = "0.14.0"
rand = { version = "0.8.5", default-features = false, features = [
"std",
"std_rng",
] }
rayon = "1.10.0"
typed-builder = "0.20.0"
[dev-dependencies]
rand = "0.8.5"
rand_distr = "0.4.3"
[[example]]
name = "nsga2_binh_korn"
path = "examples/nsga2/binh_korn.rs"
[[example]]
name = "nsga2_schaffer_n1"
path = "examples/nsga2/schaffer_n1.rs"
[[example]]
name = "spea2_binh_korn"
path = "examples/spea2/binh_korn.rs"
[[example]]
name = "spea2_schaffer_n1"
path = "examples/spea2/schaffer_n1.rs"