Crate for DEB/control file generation in Rust
This crate provides a simple builder interface for DEB/control files generation. There are two types of builders: binary and source. To access them use the associated functions on DebControlBuilder
, for example:
```rust
use deb_control::DebControlBuilder;
DebControlBuilder::binarypackagebuilder(); // or DebControlBuilder::sourcepackagebuilder(); ```
Here's an example of building a binary DEB/control from scratch: ```rust use deb_control::DebControlBuilder;
fn main() -> Result<(), std::boxed::Box
// you can later render it to a string like so:
let _rendered = control.render()?;
// or save it directly to a file
control.save_to("/tmp/CONTROL")?;
Ok(())
}
```