generated from PlexSheep/baserepo
All checks were successful
cargo devel CI / cargo CI (push) Successful in 1m35s
12 lines
391 B
Rust
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;
|