Crate codegenrs

source ·
Expand description

§codegenrs

Moving code-gen our of build.rs

§About

codegenrs makes it easy to get rid of code-gen in build.rs, reducing your and dependents’ build times. This is done by:

  • Creating a child [[bin]] crate that does code-gen using codegenrs
  • Do one-time code-gen and commit it
  • Run the --check step in your CI to ensure your code-gen is neither out of date or been human edited.

§Usage

imperative example:

Structs§

Functions§

  • Run rustfmt on an in-memory string
  • Write or verify code-genned text.