Create codegen library for use in build.rs
Open
enhancement
- Dominant language
- Rust
- Stars
- 86
- Forks
- 18
- Avg merge
- 20h 49m
- Merged PRs (30d)
- 1
Description
As reference https://crates.io/crates/protobuf-codegen
Create a library that can facilitate the invocation of `pdlc` from `build.rs` files.
Potential interface:
```
pdlc::Codegen::new()
.input("test.pdl")
.output("test.rs")
.output_format(Codegen::Format::Rust)
.run();
```
Contributor guide
Assessment
This issue has not been assessed yet.