5f6bf5798c
- Remove unused OptimizrError imports in pde_solvers and mod.rs - Remove unused Array2 import in optimal_transport.rs - Remove unused Grid and pde_solvers imports in nash_equilibrium.rs - Fix m_new variable declaration in forward_backward.rs - Add #[allow(non_snake_case)] for T field/parameter in python_bindings.rs - Prefix unused hist_cr variable in shade.rs All changes fix compilation warnings while preserving functionality.
43 lines
1.0 KiB
TOML
43 lines
1.0 KiB
TOML
[package]
|
|
name = "optimizr"
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
authors = ["Your Name <your.email@example.com>"]
|
|
description = "High-performance optimization algorithms in Rust with Python bindings"
|
|
license = "MIT"
|
|
repository = "https://github.com/yourusername/optimiz-r"
|
|
keywords = ["optimization", "machine-learning", "statistics", "numerical", "scientific"]
|
|
categories = ["algorithms", "science", "mathematics"]
|
|
readme = "README.md"
|
|
|
|
[lib]
|
|
name = "optimizr"
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
pyo3 = { version = "0.21", features = ["extension-module", "abi3-py38"], optional = true }
|
|
numpy = { version = "0.21", optional = true }
|
|
rand = "0.8"
|
|
rand_distr = "0.4"
|
|
ndarray = "0.15"
|
|
ndarray-linalg = { version = "0.16", features = ["openblas-system"] }
|
|
num-traits = "0.2"
|
|
rayon = "1.8"
|
|
thiserror = "1.0"
|
|
ordered-float = "4.2"
|
|
statrs = "0.17"
|
|
|
|
[features]
|
|
default = ["python-bindings"]
|
|
python-bindings = ["pyo3", "numpy"]
|
|
parallel = []
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.5"
|
|
approx = "0.5"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
codegen-units = 1
|