-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (40 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
47 lines (40 loc) · 1.04 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
[package]
name = "cmaes"
version = "0.2.2"
edition = "2021"
description = "An implementation of the CMA-ES optimization algorithm."
readme = "README.md"
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/cmaes"
repository = "https://github.com/pengowen123/cmaes"
[features]
default = ["plotters"]
# For BLAS/LAPACK
openblas = ["nalgebra-lapack/openblas"]
netlib = ["nalgebra-lapack/netlib"]
accelerate = ["nalgebra-lapack/accelerate"]
intel-mkl = ["nalgebra-lapack/intel-mkl"]
[dependencies]
rand = "0.8.5"
rand_chacha = "0.3.1"
rayon = "1.5.1"
nalgebra = "0.33"
statrs = "0.18"
[dependencies.nalgebra-lapack]
version = "0.25"
optional = true
default-features = false
[dependencies.plotters]
version = "0.3.1"
optional = true
default-features = false
features = [ "ttf", "bitmap_backend", "bitmap_encoder", "line_series" ]
[dev-dependencies]
assert_approx_eq = "1.1"
[dev-dependencies.criterion]
version = "0.3.5"
default-features = false
features = [ "html_reports", "cargo_bench_support" ]
[[bench]]
name = "iter"
harness = false