-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (30 loc) · 931 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
[package]
name = "ganesh"
version = "0.13.1"
edition = "2021"
description = "Function minimization in Rust, simplified"
documentation = "https://docs.rs/ganesh"
readme = "README.md"
homepage = "https://github.com/denehoffman/ganesh"
repository = "https://github.com/denehoffman/ganesh"
license = "MIT OR Apache-2.0"
keywords = ["optimization", "minimization"]
categories = ["science", "mathematics"]
rust-version = "1.69.0"
[dependencies]
nalgebra = { version = "0.33.0", features = ["serde-serialize"] }
num = "0.4.3"
ctrlc = "3.4.5"
lazy_static = "1.5.0"
dyn-clone = "1.0.17"
serde = { version = "1.0.214", features = ["derive"] }
[dev-dependencies]
criterion = { version = "2.7.2", package = "codspeed-criterion-compat", features = [
"html_reports",
] }
float-cmp = "0.10.0"
[[bench]]
name = "rosenbrock_benchmark"
harness = false
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", "./docs/docs-header.html"]