xcodeproj 0.3.0

xcodeproj reader and parser.
Documentation
1
2
3
4
5
6
7
8
9
//! Xcode related types and helpers
include!(concat!(env!("OUT_DIR"), "/file_types.rs"));

/// Translate file extsnion to xcode file type
pub fn xcode_file_type<S: AsRef<str>>(extension: S) -> Option<String> {
    XCODE_FILE_TYPES
        .get(extension.as_ref())
        .map(|s| s.to_string())
}