-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (42 loc) · 1.45 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
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "optirustic"
version = "1.1.0"
authors = ["Stefano Simoncelli <[email protected]>"]
edition = "2021"
rust-version = "1.80"
description = "A multi-objective optimisation framework for Rust"
repository = "https://github.com/s-simoncelli/optirustic"
keywords = ["genetic-algorithm", "optimisation", "multiobjective", "nsga2", "nsga3"]
categories = ["science", "algorithms"]
readme = "README.md"
license = "MIT"
[workspace]
resolver = "2"
members = ["libs/optirustic-macros", "libs/hv-fonseca-et-al-2006-sys"]
default-members = ["libs/optirustic-macros", "libs/hv-fonseca-et-al-2006-sys"]
exclude = ["optirustic-py"]
[lib]
name = "optirustic"
[dependencies]
log = "0.4.21"
serde_json = "1.0"
serde = { version = "1.0.200", features = ["derive"] }
rand = "0.8.5"
rand_chacha = "0.3.1"
thiserror = "1.0.60"
rayon = "1.10.0"
env_logger = "0.11.3"
chrono = { version = "0.4.38", features = ["serde"] }
ordered-float = "4.2.0"
optirustic-macros = { path = "libs/optirustic-macros", version = "1.0.0" }
hv-fonseca-et-al-2006-sys = { path = "libs/hv-fonseca-et-al-2006-sys", version = "2.0.2-rc.2" }
nalgebra = "0.33.0"
[dev-dependencies]
float-cmp = "0.9.0"
[package.metadata.docs.rs]
all-features = true
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
rustdoc-args = ["--html-in-header", "src/katex-header.html"]
# Run test with optimisation to speed up tests solving optimisation problems.
[profile.test]
opt-level = 3