creator_simctl/
lib.rs

1//! Rust-wrapper around the `simctl` utility that is shipped with Xcode and that
2//! can be used to install apps onto one of the iOS simulator and subsequently
3//! launch them.
4
5#![warn(missing_docs)]
6
7mod device;
8mod simctl;
9
10mod boot;
11mod error;
12pub mod get_app_container;
13mod getenv;
14mod install;
15pub mod io;
16pub mod keychain;
17pub mod launch;
18pub mod list;
19mod open_url;
20pub mod privacy;
21pub mod push;
22mod shutdown;
23pub mod status_bar;
24mod terminate;
25pub mod ui;
26mod uninstall;
27
28#[cfg(test)]
29pub mod mock;
30
31pub use crate::simctl::Simctl;
32pub use device::{Device, DeviceQuery};
33pub(crate) use error::Validate;
34pub use error::{Error, Result};