diff options
Diffstat (limited to '')
-rw-r--r-- | vendor/powerfmt/src/lib.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/vendor/powerfmt/src/lib.rs b/vendor/powerfmt/src/lib.rs new file mode 100644 index 0000000..0cd6f7c --- /dev/null +++ b/vendor/powerfmt/src/lib.rs @@ -0,0 +1,15 @@ +//! `powerfmt` is a library that provides utilities for formatting values. Specifically, it makes it +//! significantly easier to support filling to a minimum width with alignment, avoid heap +//! allocation, and avoid repetitive calculations. + +#![cfg_attr(not(feature = "std"), no_std)] +#![cfg_attr(__powerfmt_docs, feature(doc_auto_cfg, rustc_attrs))] +#![cfg_attr(__powerfmt_docs, allow(internal_features))] + +#[cfg(feature = "alloc")] +extern crate alloc; + +pub mod buf; +pub mod ext; +pub mod smart_display; +mod smart_display_impls; |