Skip to content

Commit ad82264

Browse files
committed
re-added dependencies array to package.swift.
1 parent df2c088 commit ad82264

File tree

7 files changed

+52
-0
lines changed

7 files changed

+52
-0
lines changed

.DS_Store

0 Bytes
Binary file not shown.

Package.swift

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ let package = Package(
1515
name: "SwURL",
1616
targets: ["SwURL"]),
1717
],
18+
dependencies: [],
1819
targets: [
1920
.target(
2021
name: "SwURL",

SwURLExample/.DS_Store

0 Bytes
Binary file not shown.

SwURLExample/SwURLExample.xcodeproj/project.pbxproj

+22
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
47BEB5822A41EBAF0037B7A1 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 47BEB5812A41EBAF0037B7A1 /* Assets.xcassets */; };
1313
47BEB5862A41EBAF0037B7A1 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 47BEB5852A41EBAF0037B7A1 /* Preview Assets.xcassets */; };
1414
47BEB58E2A41EC340037B7A1 /* SwURL in Frameworks */ = {isa = PBXBuildFile; productRef = 47BEB58D2A41EC340037B7A1 /* SwURL */; };
15+
47C20FB72A422A6B00051E2B /* SwURL in Frameworks */ = {isa = PBXBuildFile; productRef = 47C20FB62A422A6B00051E2B /* SwURL */; };
1516
/* End PBXBuildFile section */
1617

1718
/* Begin PBXFileReference section */
@@ -28,6 +29,7 @@
2829
isa = PBXFrameworksBuildPhase;
2930
buildActionMask = 2147483647;
3031
files = (
32+
47C20FB72A422A6B00051E2B /* SwURL in Frameworks */,
3133
47BEB58E2A41EC340037B7A1 /* SwURL in Frameworks */,
3234
);
3335
runOnlyForDeploymentPostprocessing = 0;
@@ -97,6 +99,7 @@
9799
name = SwURLExample;
98100
packageProductDependencies = (
99101
47BEB58D2A41EC340037B7A1 /* SwURL */,
102+
47C20FB62A422A6B00051E2B /* SwURL */,
100103
);
101104
productName = SwURLExample;
102105
productReference = 47BEB57A2A41EBAF0037B7A1 /* SwURLExample.app */;
@@ -126,6 +129,9 @@
126129
Base,
127130
);
128131
mainGroup = 47BEB5712A41EBAF0037B7A1;
132+
packageReferences = (
133+
47C20FB52A422A6B00051E2B /* XCRemoteSwiftPackageReference "SwURL" */,
134+
);
129135
productRefGroup = 47BEB57B2A41EBAF0037B7A1 /* Products */;
130136
projectDirPath = "";
131137
projectRoot = "";
@@ -368,11 +374,27 @@
368374
};
369375
/* End XCConfigurationList section */
370376

377+
/* Begin XCRemoteSwiftPackageReference section */
378+
47C20FB52A422A6B00051E2B /* XCRemoteSwiftPackageReference "SwURL" */ = {
379+
isa = XCRemoteSwiftPackageReference;
380+
repositoryURL = "https://github.com/cmtrounce/SwURL";
381+
requirement = {
382+
kind = upToNextMajorVersion;
383+
minimumVersion = 0.4.2;
384+
};
385+
};
386+
/* End XCRemoteSwiftPackageReference section */
387+
371388
/* Begin XCSwiftPackageProductDependency section */
372389
47BEB58D2A41EC340037B7A1 /* SwURL */ = {
373390
isa = XCSwiftPackageProductDependency;
374391
productName = SwURL;
375392
};
393+
47C20FB62A422A6B00051E2B /* SwURL */ = {
394+
isa = XCSwiftPackageProductDependency;
395+
package = 47C20FB52A422A6B00051E2B /* XCRemoteSwiftPackageReference "SwURL" */;
396+
productName = SwURL;
397+
};
376398
/* End XCSwiftPackageProductDependency section */
377399
};
378400
rootObject = 47BEB5722A41EBAF0037B7A1 /* Project object */;

SwURLExample/SwURLExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"pins" : [
3+
{
4+
"identity" : "swurl",
5+
"kind" : "remoteSourceControl",
6+
"location" : "https://github.com/cmtrounce/SwURL",
7+
"state" : {
8+
"revision" : "6babfacd1df7adc4b9b418d84535d4598bc8effc",
9+
"version" : "0.4.2"
10+
}
11+
}
12+
],
13+
"version" : 2
14+
}

0 commit comments

Comments
 (0)