-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
81 lines (68 loc) · 1.68 KB
/
Cargo.toml
File metadata and controls
81 lines (68 loc) · 1.68 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[package]
name = "genetic_algorithm"
version = "0.27.1"
edition = "2021"
readme = "README.md"
description = "A genetic algorithm implementation"
repository = "https://github.com/basvanwesting/genetic-algorithm.git"
homepage = "https://github.com/basvanwesting/genetic-algorithm.git"
documentation = "https://docs.rs/genetic_algorithm/latest/genetic_algorithm"
license = "MIT OR Apache-2.0"
keywords = ["genetic", "ga"]
exclude = ["/.projections.json", "/performance.txt", "/refactor_script.rb", "/workspace.txt"]
rust-version = "1.71.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = { version = "0.8.5", features = ["small_rng", "alloc"] }
itertools = "0.13.0"
streaming-stats = "0.2.3"
factorial = "0.4.0"
num = "0.4.0"
rayon = "1.10.0"
thread_local = "1.1.8"
log = "0.4.0"
cardinality-estimator = "1.0.2"
impl-trait-for-tuples = "0.2.2"
rustc-hash = "2.1.0"
bytemuck = { version = "1.21.0", features = ["derive"] }
lru = "0.16.3"
nohash-hasher = "0.2.0"
[dev-dependencies]
criterion = "0.5.1"
pprof = { version = "0.14", features = ["criterion", "flamegraph"] }
distance = "0.4.0"
chrono = "0.4.38"
statrs = "0.18.0"
env_logger = "0.11.5"
approx = "0.5.1"
plotters = "0.3"
# for profiling and flamegraph
# [profile.release]
# debug = 1
[[bench]]
name = "crossover"
harness = false
[[bench]]
name = "evolve"
harness = false
[[bench]]
name = "extension"
harness = false
[[bench]]
name = "fitness"
harness = false
[[bench]]
name = "genotype"
harness = false
[[bench]]
name = "mutate"
harness = false
[[bench]]
name = "neighbours"
harness = false
[[bench]]
name = "population"
harness = false
[[bench]]
name = "select"
harness = false