Skip to main content

ledge/
lib.rs

1//! Public Rust API for the Ledge portfolio QP solver.
2//!
3//! Numerical implementation details live in `ledge-core`; this crate is the
4//! import surface intended for Rust applications and the Python bindings.
5
6#![forbid(unsafe_code)]
7
8pub use ledge_core::*;