-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (33 loc) · 1.09 KB
/
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
[package]
name = "globalsearch"
version = "0.2.0"
edition = "2021"
authors = ["Germán Martín Heim <[email protected]>"]
license = "MIT"
description = "Global optimization with scatter search and local NLP solvers written in Rust using argmin"
readme = "README.md"
repository = "https://github.com/GermanHeim/globalsearch-rs"
keywords = ["optimization", "math", "science"]
categories = ["science", "mathematics"]
exclude = ["/media", ".github", "/python"]
build = "build.rs"
rust-version = "1.78" # MSRV
[dependencies]
argmin = { version = "0.10.0" }
argmin-math = { version = "0.4.0", features = ["ndarray_latest-nolinalg"] }
ndarray = "0.15.6"
rayon = { version = "1.5.3", optional = true }
thiserror = "2.0.11"
rand = "0.9.0"
kdam = { version = "0.6.2", optional = true }
[features]
default = []
rayon = ["dep:rayon"]
progress_bar = ["dep:kdam"]
[dev-dependencies]
criterion = { git = "https://github.com/bheisler/criterion.rs", features = [
"html_reports",
] }
[[bench]]
name = "six_hump_camel"
harness = false