calib-targets 0.11.1

Main entry point crate for a collection of plain calibration target detectors built on top of ChESS corners
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! `calib-targets` CLI entry point.
//!
//! All logic lives in [`calib_targets::cli`]; this binary just dispatches.

use std::process::ExitCode;

fn main() -> ExitCode {
    match calib_targets::cli::run() {
        Ok(()) => ExitCode::SUCCESS,
        Err(err) => {
            eprintln!("{err}");
            ExitCode::FAILURE
        }
    }
}