apollo-configuration-macros 0.1.1

Supporting macros for apollo-configuration (internal, do not use directly)
Documentation
1
2
3
4
5
6
7
8
mod enums;
mod structs;
mod tuples;

fn pretty_print(tokens: proc_macro2::TokenStream) -> String {
    let file = syn::parse2(tokens).expect("valid tokens");
    prettyplease::unparse(&file)
}