formattable 0.2.0

Ergonomically support formatted output
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![doc = include_str!("../README.md")]

#[cfg(feature = "clap")]
mod clap;
mod error;
mod format;

#[cfg(feature = "clap")]
pub use clap::{FormatArg, FormatArgOpt};
pub use error::Error;
pub use format::Format;