text-grid-macros 0.4.1

A library to create formatted plain-text tables.
Documentation
1
2
3
4
5
6
7
8
9
10
#[macro_use]
mod syn_utils;

mod bound;
mod derive_cells;

#[proc_macro_derive(Cells, attributes(cells))]
pub fn derive_cells(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
    syn_utils::into_macro_output(derive_cells::build(input.into()))
}