#![doc = include_str!("../README.md")]
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
extern crate proc_macro;
mod attrs;
mod fq;
mod label;
mod manifest;
mod shape;
mod symbol;
pub use attrs::*;
pub use fq::*;
pub use label::*;
pub use manifest::*;
pub use shape::*;
pub use symbol::*;