plansolve 0.25.3

Official Rust client library for the PlanSolve optimization API.
Documentation
1
2
3
4
5
6
7
8
//! Shift assignment optimization — assigns shifts/tasks to employees based on
//! skills and availability, focused on shift coverage and scheduling.

mod client;
mod models;

pub use client::ShiftClient;
pub use models::*;