This repository has been archived on 2024-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
pt/members/libpt-core/src/lib.rs
PlexSheep c3cc64699c
All checks were successful
cargo devel CI / cargo CI (push) Successful in 1m35s
clippy fixes
2024-02-16 18:21:19 +01:00

12 lines
391 B
Rust

//! # common functionalities
//!
//! This crate is part of [`pt`](../libpt/index.html), but can also be used as a standalone
//! module.
//!
//! This crate implements core functionality useful for many use cases, such as macros,
//! formatting functions and more.
/// macros to make things faster in your code
pub mod macros;
/// some general use printing to stdout tools
pub mod printing;