holodeck-simctl 0.6.1

A CLI and TUI companion for the iOS Simulator's simctl — boot, record, screenshot, and manage simulators
1
2
3
4
5
6
7
use uuid::Uuid;

/// `Uuid::to_string()` is lowercase; Swift's `UUID.uuidString` is uppercase.
/// Match the Swift CLI's printed output exactly (plan §6.6).
pub fn udid(id: Uuid) -> String {
    id.to_string().to_uppercase()
}