cheadergen_cli 0.1.3

A tool for generating C bindings to Rust code.
mod analysis;
mod cli;
mod codegen;
mod config;
mod constant_item;
mod diagnostic;
mod indexing;
mod metadata;
mod static_item;
mod topological_sort;

use std::process::ExitCode;

use rustdoc_processor::CrateCollection;

use crate::indexing::CheadergenIndexer;

type Collection = CrateCollection<CheadergenIndexer>;

fn main() -> ExitCode {
    cli::run()
}