polyhorn_cli/ios/spec.rs
1use serde::{Deserialize, Serialize};
2
3/// Contains iOS-specific settings within an app specification stored in a
4/// `Polyhorn.toml` file.
5#[derive(Clone, Debug, Default, Eq, PartialEq, Serialize, Deserialize)]
6pub struct Spec {
7 /// This is the bundle identifier of your app. On iOS, bundle identifiers
8 /// are written in reverse DNS notation. For example, if your company's
9 /// domain is https://glacyr.com and the app name is Babel, the bundle
10 /// identifier should be `com.glacyr.Babel`.
11 #[serde(rename = "bundle-identifier")]
12 pub bundle_identifier: String,
13}