nlib 0.1.3

Nate's library. Various things or macro patterns I use to aid in more succint Rust programming.
Documentation
// Copyright 2025 Nathan Sizemore <nathanrsizemore@gmail.com>
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, you can obtain one at http://mozilla.org/MPL/2.0/.

mod cell;
mod exec_on_drop;
mod ffi;
mod init_once;
mod match_ext;
mod mpsc_ext;
mod ptr;
mod signal;

pub use cell::*;
pub use exec_on_drop::*;
pub use ffi::*;
pub use init_once::*;
pub use signal::*;