ostree-ext 0.2.2

Extension APIs for OSTree
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # Losslessly export and import ostree commits as tar archives
//!
//! Convert an ostree commit into a tarball stream, and import
//! it again.

//#![deny(missing_docs)]
// Good defaults
#![forbid(unused_must_use)]
#![deny(unsafe_code)]

mod import;
pub use import::*;
mod export;
pub use export::*;