dfmt 0.4.1

A fully featured dynamic template drop in replacement for the format! macro.
Documentation
#![cfg_attr(feature = "nightly_formatting_options", feature(formatting_options))]
#![doc = include_str!("../README.md")]
#![cfg_attr(not(feature = "std"), no_std)]

#[cfg(not(feature = "std"))]
extern crate alloc;

mod error;
mod macros;
mod materials;
mod values;

pub use error::Error;
pub use materials::{
    Arguments, ArgumentsBuilder, DynFmt, Template, ToTemplate, UncheckedArgumentsBuilder,
};
pub use values::{
    Alignment, AllowedSpecifier, AllowedSpecifierBuilder, AlternateForm, ArgumentKey,
    ArgumentTypeRequirements, ArgumentValue, PadZero, Precision, Sign, Specifier, ToAlternateForm,
    ToArgumentKey, ToPadZero, ToSign, Type, TypedArgumentKey, Width, WidthOrPrecisionAmount,
};