1799a2fa7b
- Bump Cargo.toml + pyproject.toml from 2.0.0-alpha.1 to 2.0.0. - Restore PyPI distribution name to 'optimizr' (continuity with v1.4.x). Rust crate stays 'optimiz-rs'; both expose Python module 'optimizr'. - README: new 'What's New in v2.0.0' section listing every advertised primitive (solve_volterra, solve_fractional_ode, linear_bsde_constant_coeffs, mean_reverting_mckean_vlasov, historical_var_py, etc.) with corrected install command 'pip install optimizr'. - tests/test_v2_api.py: 20-test non-regression suite with analytic ground-truth checks for every v2 primitive plus a parametrised guard over the v1.x public surface. - CHANGELOG: 2.0.0 entry documenting the release. Build verification: - maturin develop --release --features python-bindings -> optimizr-2.0.0 wheel built - pytest tests/test_v2_api.py: 20 passed, 0 failed - cargo test --lib --no-default-features: 124 passed; 5 pre-existing failures (mrsjd, ou_estimator, hurst_random_walk, hjb_solver_symmetry, regime_switching) unchanged since v1.1.
43 lines
1.0 KiB
TOML
43 lines
1.0 KiB
TOML
[package]
|
|
name = "optimiz-rs"
|
|
version = "2.0.0"
|
|
edition = "2021"
|
|
authors = ["HFThot Research Lab <contact@hfthot-lab.eu>"]
|
|
description = "High-performance optimization algorithms in Rust with Python bindings"
|
|
license = "MIT"
|
|
repository = "https://github.com/ThotDjehuty/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 = ["pyo3", "numpy"]
|
|
parallel = []
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.5"
|
|
approx = "0.5"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
codegen-units = 1
|