8 releases

0.1.8 Feb 22, 2024
0.1.7 Nov 29, 2023
0.1.4 Oct 28, 2023
0.1.1 Jun 16, 2023

#579 in Unix APIs

Download history 153/week @ 2024-01-16 515/week @ 2024-01-23 145/week @ 2024-01-30 471/week @ 2024-02-06 316/week @ 2024-02-13 332/week @ 2024-02-20 337/week @ 2024-02-27 872/week @ 2024-03-05 315/week @ 2024-03-12 521/week @ 2024-03-19 658/week @ 2024-03-26 1371/week @ 2024-04-02 252/week @ 2024-04-09 666/week @ 2024-04-16 283/week @ 2024-04-23 630/week @ 2024-04-30

2,130 downloads per month
Used in 3 crates (via debian-analyzer)

Apache-2.0

84KB
2K SLoC

Lossless parser for Debian Control files

This crate contains a lossless parser for Debian control files.


lib.rs:

Lossless parser for Debian control files.

This crate provides a parser for Debian control files. It is lossless, meaning that it will preserve the original formatting of the file. It also provides a way to serialize the parsed data back to a string.

Example

use debian_control::{Control, Priority};
use std::fs::File;

let mut control = Control::new();
let mut source = control.add_source("hello");
source.set_section("rust");

let mut binary = control.add_binary("hello");
binary.set_architecture("amd64");
binary.set_priority(Priority::Optional);
binary.set_description("Hello, world!");

assert_eq!(control.to_string(), r#"Source: hello
Section: rust

Package: hello
Architecture: amd64
Priority: optional
Description: Hello, world!
"#);

Dependencies

~4.5–7MB
~150K SLoC