genpac 0.1.0

Sandbox for Gentoo ebuild development using bubblewrap
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2023 Gokul Das B
// SPDX-License-Identifier: GPL-3.0-or-later
//! Sandboxing module
//!
//! This module deals with invoking bubblewrap (bwrap) and the target application. The target
//! application runs as root inside the sandbox, but has no privileges outside the chroot.

use bwrap::BWParams;
use cfg::ModConfig;
pub use cli::SubCmdArgs;

mod bwrap;
mod cfg;
mod cli;