1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#![deny(missing_docs)]
#![deny(missing_debug_implementations)]
#![forbid(unused_must_use)]
#![deny(unsafe_code)]
#![cfg_attr(feature = "dox", feature(doc_cfg))]
pub use oci_spec;
pub use ostree;
pub use ostree::gio;
pub use ostree::gio::glib;
type Result<T> = anyhow::Result<T>;
mod globals;
pub mod cli;
pub mod container;
pub mod container_utils;
pub mod diff;
pub mod ima;
pub mod keyfileext;
pub mod refescape;
pub mod tar;
pub mod tokio_util;
pub(crate) mod commit;
pub(crate) mod objgv;
pub mod prelude {
#[doc(hidden)]
pub use ostree::prelude::*;
}
#[cfg(feature = "internal-testing-api")]
pub mod integrationtest;