This crate requires a nightly (unstable, experimental) compiler version. To switch to it, you must have Rust installed via Rustup, and run:
rustup default nightly
Run rustup default stable to switch back.
rustup default stable
parser-c-macro is a procedural macro. It will run at compile time and transform your program's source code.
parser-c-macro
Run this command in a terminal, in your project's directory:
cargo add parser-c-macro
To add it manually, edit your project's Cargo.toml file and add to the [dependencies] section:
Cargo.toml
[dependencies]
parser-c-macro = "0.3.0"
You may need to import the macro(s) with use parser_c_macro::*.
use parser_c_macro::*
parser_c_macro
Back to the crate overview.