Initial commit: OptimizR - High-performance optimization algorithms in Rust with Python bindings

This commit is contained in:
Melvin Avarez
2025-12-03 18:16:48 +01:00
commit 923d27e87b
31 changed files with 7466 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
[package]
name = "optimizr"
version = "0.1.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"] }
rand = "0.8"
rand_distr = "0.4"
ndarray = "0.15"
num-traits = "0.2"
[dev-dependencies]
criterion = "0.5"
approx = "0.5"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1