vcd_parser 0.2.0

iEDA vcd parser
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    let config = cbindgen::Config::from_file("cbindgen.toml")
        .expect("Failed to read cbindgen configuration file");

    cbindgen::Builder::new()
        .with_config(config)
        .with_crate("./")
        .generate()
        .expect("Unable to generate bindings")
        .write_to_file("dist/vcd_parser.h");
}