the main exposed function of the crate is parse(bytes: &[u8]) -> Circuit

example of usage:

``` use tcsavemonger::{parse, Circuit}; use std::fs;

fn parsefromfile(path: &str) -> Circuit { let bytes = fs::read(path).expect("error reading file"); parse(&bytes) } ```