wrapc 0.1.6

A zero-fuss, type-safe parser for rustc arguments, designed for RUSTC_WRAPPER tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! A zero-fuss, type-safe parser for `rustc` arguments, designed for `RUSTC_WRAPPER` tools.
//!
//! Part of the [`Inherit`](https://crates.io/crates/cargo-inherit) ecosystem.
//! For detailed documentation, protocol specification, and advanced usage examples, see the
//! [Inherit Book — wrapc chapter](https://vi-is-ramen.github.io/book/en/wrapc).

mod error;
pub use error::*;

mod info;
pub use info::*;

mod parser;
pub use parser::*;