Skip to content
This repository has been archived by the owner on Nov 11, 2023. It is now read-only.

Use supported name for example 3 and upgrade to Swift 5.0 #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 35 additions & 35 deletions 3-packaging-a-mac-app/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion 3-packaging-a-mac-app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "3-packaging-a-mac-app"
name = "packaging-a-mac-app"
version = "0.1.0"
authors = ["Delisa Mason <iskanamagus@gmail.com>"]

Expand Down
2 changes: 1 addition & 1 deletion 3-packaging-a-mac-app/app/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>RustBinaryName</key>
<string>3-packaging-a-mac-app</string>
<string>packaging-a-mac-app</string>
</dict>
</plist>
12 changes: 6 additions & 6 deletions 3-packaging-a-mac-app/app/RustPack.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
/* Begin PBXBuildFile section */
8ADFC72B1DD67B670080DCCC /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 8ADFC72A1DD67B670080DCCC /* Assets.xcassets */; };
8ADFC7361DD67B950080DCCC /* main.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8ADFC7351DD67B950080DCCC /* main.swift */; };
8ADFC73C1DD67DF60080DCCC /* 3-packaging-a-mac-app in Resources */ = {isa = PBXBuildFile; fileRef = 8ADFC73B1DD67DF60080DCCC /* 3-packaging-a-mac-app */; };
8ADFC73C1DD67DF60080DCCC /* packaging-a-mac-app in Resources */ = {isa = PBXBuildFile; fileRef = 8ADFC73B1DD67DF60080DCCC /* packaging-a-mac-app */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
Expand All @@ -27,7 +27,7 @@
8ADFC72A1DD67B670080DCCC /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = SOURCE_ROOT; };
8ADFC72F1DD67B670080DCCC /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = SOURCE_ROOT; };
8ADFC7351DD67B950080DCCC /* main.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = main.swift; sourceTree = SOURCE_ROOT; };
8ADFC73B1DD67DF60080DCCC /* 3-packaging-a-mac-app */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; name = "3-packaging-a-mac-app"; path = "../../target/release/3-packaging-a-mac-app"; sourceTree = "<group>"; };
8ADFC73B1DD67DF60080DCCC /* packaging-a-mac-app */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; name = "packaging-a-mac-app"; path = "../../target/release/packaging-a-mac-app"; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -61,7 +61,7 @@
isa = PBXGroup;
children = (
8ADFC72A1DD67B670080DCCC /* Assets.xcassets */,
8ADFC73B1DD67DF60080DCCC /* 3-packaging-a-mac-app */,
8ADFC73B1DD67DF60080DCCC /* packaging-a-mac-app */,
8ADFC72F1DD67B670080DCCC /* Info.plist */,
8ADFC7351DD67B950080DCCC /* main.swift */,
);
Expand Down Expand Up @@ -153,7 +153,7 @@
buildActionMask = 2147483647;
files = (
8ADFC72B1DD67B670080DCCC /* Assets.xcassets in Resources */,
8ADFC73C1DD67DF60080DCCC /* 3-packaging-a-mac-app in Resources */,
8ADFC73C1DD67DF60080DCCC /* packaging-a-mac-app in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -279,7 +279,7 @@
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = me.delisa.RustPack;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 3.0;
SWIFT_VERSION = 5.0;
};
name = Debug;
};
Expand All @@ -293,7 +293,7 @@
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = me.delisa.RustPack;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 3.0;
SWIFT_VERSION = 5.0;
};
name = Release;
};
Expand Down