Skip to content

Commit

Permalink
feat(xcodeproj): implement default
Browse files Browse the repository at this point in the history
  • Loading branch information
kkharji committed Jun 19, 2022
1 parent 7cfe8c1 commit 06ed5c4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xcodeproj"
version = "0.2.5"
version = "0.2.6"
edition = "2021"
description = "xcodeproj reader and parser."
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pub mod pbxproj;
pub mod xcode;

/// Main presentation of XCodeProject
#[derive(Debug, derive_deref_rs::Deref)]
#[derive(Debug, Default, derive_deref_rs::Deref)]
pub struct XCodeProject {
root: PathBuf,
#[deref]
Expand Down
2 changes: 1 addition & 1 deletion src/pbxproj/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use std::path::{Path, PathBuf};
use tap::Pipe;

/// `Main` Representation of project.pbxproj file
#[derive(Debug, derive_new::new, derive_deref_rs::Deref)]
#[derive(Default, Debug, derive_new::new, derive_deref_rs::Deref)]
pub struct PBXRootObject {
/// archiveVersion
archive_version: u8,
Expand Down

0 comments on commit 06ed5c4

Please sign in to comment.