feat: add f as alias for std::format macro
All checks were successful
Test / build (map[name:stable]) (push) Successful in 1m40s
Test / build (map[name:nightly]) (push) Successful in 2m30s
Release Please / Release-plz (push) Successful in 25s

This commit is contained in:
Paul Campbell 2025-01-08 21:05:51 +00:00
parent 64dd15fcb9
commit 7f2f8bdd5b

View file

@ -1,2 +1,6 @@
#![allow(unused_imports)]
// //
mod newtype; mod newtype;
/// Alias for [format] macro.
pub use std::format as f;