candid 0.1.1

Candid is an interface description language (IDL) for interacting with canisters running on the Internet Computer.
Documentation
extern crate lalrpop;

fn main() {
    lalrpop::Configuration::new()
        .use_cargo_dir_conventions()
        .force_build(true)
        .process()
        .unwrap();
}