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.
2023-09-20 18:37:06 +02:00
|
|
|
//! # A library for common needs
|
|
|
|
//!
|
|
|
|
//! `pt` aims to implement a number of functionalities that might me useful to develop
|
|
|
|
//! programs in Rust. It aims to be a collection of generally, possibly useful things.
|
|
|
|
//!
|
|
|
|
//! `pt` is a project consisting of multiple smaller crates, all bundled together in this
|
|
|
|
//! "main crate". Most crates will only show up if you activate their feature.
|
2024-03-03 18:19:36 +01:00
|
|
|
#[cfg_attr(docsrs, doc(cfg(feature = "full")))]
|
2023-09-20 18:15:53 +02:00
|
|
|
#[cfg(feature = "bintols")]
|
2024-01-10 21:52:13 +01:00
|
|
|
pub use libpt_bintols as bintols;
|
|
|
|
#[cfg(feature = "core")]
|
|
|
|
pub use libpt_core as core;
|
2023-09-20 18:15:53 +02:00
|
|
|
#[cfg(feature = "log")]
|
2024-01-10 21:52:13 +01:00
|
|
|
pub use libpt_log as log;
|