apple-clis 0.0.15

A collection of Apple command-line tool wrappers, library and CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::prelude::*;

pub use device_name::{DeviceName, IPadVariant, IPhoneVariant};
pub use generation::*;
pub use screen_size::{ScreenSize, MaybeScreenSize};
pub use model_name::ModelName;

mod device_name;
mod model_name;
mod generation;
mod screen_size;

/// e.g. "com.apple.CoreSimulator.SimRuntime.iOS-16-4"
#[derive(Serialize, Deserialize, Debug, Hash, PartialEq, Eq)]
pub struct RuntimeIdentifier(String);