Skip to content
This repository was archived by the owner on Apr 11, 2024. It is now read-only.

Commit a1430f9

Browse files
authored
Merge pull request #30 from unsignedapps/tech/bump-dependencies
Bumped Dependencies
2 parents ac907ca + 0fb2d07 commit a1430f9

File tree

4 files changed

+14
-33
lines changed

4 files changed

+14
-33
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
/Packages
55
/*.xcodeproj
66
xcuserdata/
7+
DerivedData/

Package.resolved

Lines changed: 8 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.2
1+
// swift-tools-version:5.3
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33

44
import PackageDescription
@@ -16,9 +16,9 @@ let package = Package(
1616
],
1717

1818
dependencies: [
19-
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "0.1.0"),
20-
.package(name: "SwiftPM", url: "https://github.com/apple/swift-package-manager.git", .revision("5abb16c6ea0657a23bca2660c49ed65465e7cc7a")),
21-
.package(url: "https://github.com/apple/swift-tools-support-core.git", from: "0.1.3"),
19+
.package(url: "https://github.com/apple/swift-argument-parser.git", .exact("0.3.2")),
20+
.package(name: "SwiftPM", url: "https://github.com/apple/swift-package-manager.git", .revision("swift-5.3.3-RELEASE")),
21+
.package(url: "https://github.com/apple/swift-tools-support-core.git", .exact("0.1.12")),
2222
],
2323

2424
targets: [

Sources/CreateXCFramework/PackageInfo.swift

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,13 @@ struct PackageInfo {
7070

7171
self.toolchain = try UserToolchain(destination: try .hostDestination())
7272

73-
let resources = try UserManifestResources(swiftCompiler: self.toolchain.swiftCompiler, swiftCompilerFlags: self.toolchain.extraSwiftCFlags)
73+
let resources = try UserManifestResources(swiftCompiler: self.toolchain.swiftCompiler)
7474
let loader = ManifestLoader(manifestResources: resources)
7575
self.workspace = Workspace.create(forRootPackage: root, manifestLoader: loader)
7676

7777
self.package = try PackageBuilder.loadPackage (
7878
packagePath: root,
7979
swiftCompiler: self.toolchain.swiftCompiler,
80-
swiftCompilerFlags: self.toolchain.extraSwiftCFlags,
8180
xcTestMinimumDeploymentTargets: [:],
8281
diagnostics: self.diagnostics
8382
)
@@ -87,7 +86,6 @@ struct PackageInfo {
8786
self.manifest = try ManifestLoader.loadManifest (
8887
packagePath: root,
8988
swiftCompiler: self.toolchain.swiftCompiler,
90-
swiftCompilerFlags: self.toolchain.extraSwiftCFlags,
9189
packageKind: .root
9290
)
9391
}

0 commit comments

Comments
 (0)