tugger_debian/
lib.rs

1// This Source Code Form is subject to the terms of the Mozilla Public
2// License, v. 2.0. If a copy of the MPL was not distributed with this
3// file, You can obtain one at https://mozilla.org/MPL/2.0/.
4
5/*! `tugger-debian` has been renamed to `debian-packaging`. Please port all users to this crate. */
6
7mod changelog;
8mod control;
9mod deb;
10
11pub use {
12    changelog::{Changelog, ChangelogEntry},
13    control::{
14        ControlError, ControlField, ControlFieldValue, ControlFile, ControlParagraph, SourceControl,
15    },
16    deb::{write_deb_tar, ControlTarBuilder, DebBuilder, DebError},
17};