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
pub mod prelude {
	pub use crate::error;
	pub use crate::error::{Error, Result};
	pub use crate::shared::prelude::*;
	pub(crate) use crate::{impl_exec_child, impl_exec_instance};
	pub use camino::{Utf8Path, Utf8PathBuf};
	pub use serde::{Deserialize, Serialize};
	pub use std::collections::HashMap;
	pub use std::fmt::Display;
	pub use std::num::NonZeroU8;
	pub use tracing::{debug, error, info, instrument, trace, warn};
}

#[cfg(feature = "cli")]
pub mod cli;
pub mod error;
pub mod shared;

pub mod cargo_bundle;
pub mod codesign;
pub mod ios_deploy;
pub mod open;
pub mod pkgbuild;
pub mod pkgutil;
pub mod productbuild;
pub mod productsign;
pub mod security;
pub mod spctl;
pub mod xcodebuild;
pub mod xcrun;