[package]
edition = "2024"
name = "maxpro"
version = "0.1.2"
authors = ["Matthew Heffernan"]
build = false
exclude = [
".github/",
"docs/",
"python/",
"requirements.txt",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Maximum Projection and Maximin Latin Hypercube Design creation and optimization"
readme = "README.md"
keywords = [
"machine-learning",
"doe",
"latin-hypercube",
"gaussian-process",
"optimization",
]
categories = [
"algorithms",
"mathematics",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/mrhheffernan/maxpro"
[features]
debug = ["dep:plotters"]
default = []
pyo3-bindings = ["dep:pyo3"]
[lib]
name = "maxpro"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[bin]]
name = "maxpro"
path = "src/main.rs"
[dependencies.clap]
version = "4.5.49"
features = ["derive"]
[dependencies.plotters]
version = "0.3"
optional = true
[dependencies.pyo3]
version = "0.27"
features = ["extension-module"]
optional = true
[dependencies.rand]
version = "0.9.2"
[dependencies.rayon]
version = "1.11.0"
[profile.profiling]
debug = 2
inherits = "release"