Skip to content

Commit 0cee41c

Browse files
committed
Fixed dependencies
1 parent 609100b commit 0cee41c

File tree

3 files changed

+21
-20
lines changed

3 files changed

+21
-20
lines changed

CryptomatorCryptoLib.xcodeproj/project.pbxproj

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
/* Begin PBXBuildFile section */
1010
4A7C213C2451F2AC00DE81E6 /* CryptomatorCryptoLib.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4A7C21322451F2AC00DE81E6 /* CryptomatorCryptoLib.framework */; };
1111
4A7C21432451F2AD00DE81E6 /* CryptomatorCryptoLib.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A7C21352451F2AC00DE81E6 /* CryptomatorCryptoLib.h */; settings = {ATTRIBUTES = (Public, ); }; };
12+
742023E72555A4A200822899 /* Base32 in Frameworks */ = {isa = PBXBuildFile; productRef = 742023E62555A4A200822899 /* Base32 */; };
1213
74F0F754248FC89B00B4C26D /* CryptoError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74F0F753248FC89B00B4C26D /* CryptoError.swift */; };
1314
74F0F75A2490C1EB00B4C26D /* CryptoSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74F0F7592490C1EB00B4C26D /* CryptoSupport.swift */; };
1415
74F9352A251F44E0001F4ADA /* CryptoSwift in Frameworks */ = {isa = PBXBuildFile; productRef = 74F93529251F44E0001F4ADA /* CryptoSwift */; };
15-
74F9352F251F44FE001F4ADA /* SwiftBase32 in Frameworks */ = {isa = PBXBuildFile; productRef = 74F9352E251F44FE001F4ADA /* SwiftBase32 */; };
1616
9E35C4EB24576A3D0006E50C /* CryptorTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E35C4EA24576A3D0006E50C /* CryptorTests.swift */; };
1717
9E44EEA624599C6900A37B01 /* AesSiv.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E44EEA524599C6900A37B01 /* AesSiv.swift */; };
1818
9E44EEA92459AB1500A37B01 /* AesSivTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E44EEA724599C7800A37B01 /* AesSivTests.swift */; };
@@ -56,7 +56,7 @@
5656
isa = PBXFrameworksBuildPhase;
5757
buildActionMask = 2147483647;
5858
files = (
59-
74F9352F251F44FE001F4ADA /* SwiftBase32 in Frameworks */,
59+
742023E72555A4A200822899 /* Base32 in Frameworks */,
6060
74F9352A251F44E0001F4ADA /* CryptoSwift in Frameworks */,
6161
);
6262
runOnlyForDeploymentPostprocessing = 0;
@@ -164,7 +164,7 @@
164164
name = CryptomatorCryptoLib;
165165
packageProductDependencies = (
166166
74F93529251F44E0001F4ADA /* CryptoSwift */,
167-
74F9352E251F44FE001F4ADA /* SwiftBase32 */,
167+
742023E62555A4A200822899 /* Base32 */,
168168
);
169169
productName = CryptoLib;
170170
productReference = 4A7C21322451F2AC00DE81E6 /* CryptomatorCryptoLib.framework */;
@@ -218,7 +218,7 @@
218218
mainGroup = 4A7C21282451F2AC00DE81E6;
219219
packageReferences = (
220220
74F93528251F44E0001F4ADA /* XCRemoteSwiftPackageReference "CryptoSwift" */,
221-
74F9352D251F44FE001F4ADA /* XCRemoteSwiftPackageReference "Base32" */,
221+
742023E52555A4A200822899 /* XCRemoteSwiftPackageReference "Base32" */,
222222
);
223223
productRefGroup = 4A7C21332451F2AC00DE81E6 /* Products */;
224224
projectDirPath = "";
@@ -347,8 +347,8 @@
347347
GCC_NO_COMMON_BLOCKS = YES;
348348
GCC_OPTIMIZATION_LEVEL = 0;
349349
GCC_PREPROCESSOR_DEFINITIONS = (
350+
"SWIFT_PACKAGE=1",
350351
"DEBUG=1",
351-
"$(inherited)",
352352
);
353353
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
354354
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
@@ -409,6 +409,7 @@
409409
ENABLE_STRICT_OBJC_MSGSEND = YES;
410410
GCC_C_LANGUAGE_STANDARD = gnu11;
411411
GCC_NO_COMMON_BLOCKS = YES;
412+
GCC_PREPROCESSOR_DEFINITIONS = "SWIFT_PACKAGE=1";
412413
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
413414
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
414415
GCC_WARN_UNDECLARED_SELECTOR = YES;
@@ -548,35 +549,35 @@
548549
/* End XCConfigurationList section */
549550

550551
/* Begin XCRemoteSwiftPackageReference section */
551-
74F93528251F44E0001F4ADA /* XCRemoteSwiftPackageReference "CryptoSwift" */ = {
552+
742023E52555A4A200822899 /* XCRemoteSwiftPackageReference "Base32" */ = {
552553
isa = XCRemoteSwiftPackageReference;
553-
repositoryURL = "https://github.com/krzyzanowskim/CryptoSwift.git";
554+
repositoryURL = "https://github.com/norio-nomura/Base32.git";
554555
requirement = {
555556
kind = upToNextMinorVersion;
556-
minimumVersion = 1.3.0;
557+
minimumVersion = 0.8.0;
557558
};
558559
};
559-
74F9352D251F44FE001F4ADA /* XCRemoteSwiftPackageReference "Base32" */ = {
560+
74F93528251F44E0001F4ADA /* XCRemoteSwiftPackageReference "CryptoSwift" */ = {
560561
isa = XCRemoteSwiftPackageReference;
561-
repositoryURL = "https://github.com/cryptomator/Base32.git";
562+
repositoryURL = "https://github.com/krzyzanowskim/CryptoSwift.git";
562563
requirement = {
563564
kind = upToNextMinorVersion;
564-
minimumVersion = 0.8.0;
565+
minimumVersion = 1.3.0;
565566
};
566567
};
567568
/* End XCRemoteSwiftPackageReference section */
568569

569570
/* Begin XCSwiftPackageProductDependency section */
571+
742023E62555A4A200822899 /* Base32 */ = {
572+
isa = XCSwiftPackageProductDependency;
573+
package = 742023E52555A4A200822899 /* XCRemoteSwiftPackageReference "Base32" */;
574+
productName = Base32;
575+
};
570576
74F93529251F44E0001F4ADA /* CryptoSwift */ = {
571577
isa = XCSwiftPackageProductDependency;
572578
package = 74F93528251F44E0001F4ADA /* XCRemoteSwiftPackageReference "CryptoSwift" */;
573579
productName = CryptoSwift;
574580
};
575-
74F9352E251F44FE001F4ADA /* SwiftBase32 */ = {
576-
isa = XCSwiftPackageProductDependency;
577-
package = 74F9352D251F44FE001F4ADA /* XCRemoteSwiftPackageReference "Base32" */;
578-
productName = SwiftBase32;
579-
};
580581
/* End XCSwiftPackageProductDependency section */
581582
};
582583
rootObject = 4A7C21292451F2AC00DE81E6 /* Project object */;

CryptomatorCryptoLib.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ let package = Package(
2020
.library(name: "CryptomatorCryptoLib", targets: ["CryptomatorCryptoLib"])
2121
],
2222
dependencies: [
23-
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", .upToNextMinor(from: "1.3.0")),
24-
.package(url: "https://github.com/norio-nomura/Base32.git", .upToNextMinor(from: "0.8.0"))
23+
.package(url: "https://github.com/norio-nomura/Base32.git", .upToNextMinor(from: "0.8.0")),
24+
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", .upToNextMinor(from: "1.3.0"))
2525
],
2626
targets: [
27-
.target(name: "CryptomatorCryptoLib", dependencies: ["CryptoSwift", "Base32"]),
27+
.target(name: "CryptomatorCryptoLib", dependencies: ["Base32", "CryptoSwift"]),
2828
.testTarget(name: "CryptomatorCryptoLibTests", dependencies: ["CryptomatorCryptoLib"])
2929
],
3030
swiftLanguageVersions: [.v5]

0 commit comments

Comments
 (0)