cmn 0.0.5

55 mathematical, physical, and cryptographic constants for Rust — no_std, WASM-ready, compile-time const, typed runtime lookup, 14 utility macros
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Copyright © 2023-2026 Common (CMN) library. All rights reserved.
// SPDX-License-Identifier: Apache-2.0 OR MIT

//! This is the main entry point for the cmn application.
fn main() {
    // Call the `run()` function from the `Common (CMN)` module.
    if let Err(err) = cmn::run() {
        eprintln!("Error running cmn: {}", err);
        std::process::exit(1);
    }
}