delaunay 0.8.0

D-dimensional Delaunay triangulations and convex hulls in Rust, with exact predicates, deterministic degeneracy handling, explicit topology validation, and bistellar flips for finite point sets.
Documentation
#![forbid(unsafe_code)]
#![deny(dead_code_pub_in_binary)]

//! Companion command-line entrypoint for notebook and diagnostic workflows.

mod config;

use std::process::ExitCode;

fn main() -> ExitCode {
    let command = match config::DelaunayCliArgs::from_args().into_validated() {
        Ok(command) => command,
        Err(error) => return config::exit_with_error(error),
    };

    command
        .run()
        .map_or_else(config::exit_with_error, |()| ExitCode::SUCCESS)
}