/xcodeproj-rs

Read and query pbxproj files with Rust

Primary LanguageRustMIT LicenseMIT

pbxproj-rs

Read and query .pbxproj files generated by Xcode with Rust.

Examples

# Displays all the targets and the groups of Recordings pbxproj file
$ cargo run --example simple

# Display the full tree of groups/files of the Recordings project. This
# should exactly match what you would get in the Xcode file explorer.
$ cargo run --example tree

Inspiration & References