codegen-rs

[UNMAINTAINED] A Rust library providing a builder API to generate Rust code - fork of https://github.com/carllerche/codegen

MIT License

Downloads
1.9K
Stars
2
Committers
13

Codegen-rs (INACTIVE FORK)

This crate was originally born as a fork of https://github.com/carllerche/codegen. It is now unmaintained, please don't use.

Provides an builder API to assist in generating Rust code.

More information about this crate can be found in the crate documentation

Installation

To use codegen-rs, first add this to your Cargo.toml:

[dependencies]
codegen-rs = "0.1.4"

Next, add this to your crate:

extern crate codegen_rs;

Usage

  1. Create a Scope instance.
  2. Use the builder API to add elements to the scope.
  3. Call Scope::to_string() to get the generated code.

For example:

use codegen_rs::Scope;

let mut scope = Scope::new();

scope.new_struct("Foo")
    .derive("Debug")
    .field("one", "usize")
    .field("two", "String");

println!("{}", scope.to_string());

Non-goals

codegen-rs will not attempt to perform anything beyond basic formatting. For improved formatting, the generated code can be passed to rustfmt.

License

This project is licensed under the MIT license.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in codegen-rs by you, shall be licensed as MIT, without any additional terms or conditions.