-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Swift Language Support: Drop <5.9, Add 6.0 (#94)
* Swift Language Support: Drop <5.9, Add 6.0 * wip * wip
- Loading branch information
1 parent
1d1d2bd
commit 36f9d82
Showing
11 changed files
with
110 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// swift-tools-version: 6.0 | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "combine-schedulers", | ||
platforms: [ | ||
.iOS(.v13), | ||
.macOS(.v10_15), | ||
.tvOS(.v13), | ||
.watchOS(.v6), | ||
], | ||
products: [ | ||
.library( | ||
name: "CombineSchedulers", | ||
targets: ["CombineSchedulers"] | ||
) | ||
], | ||
dependencies: [ | ||
.package(url: "https://github.com/pointfreeco/swift-concurrency-extras", from: "1.0.0"), | ||
.package(url: "https://github.com/pointfreeco/xctest-dynamic-overlay", from: "1.0.0"), | ||
], | ||
targets: [ | ||
.target( | ||
name: "CombineSchedulers", | ||
dependencies: [ | ||
.product(name: "ConcurrencyExtras", package: "swift-concurrency-extras"), | ||
.product(name: "XCTestDynamicOverlay", package: "xctest-dynamic-overlay"), | ||
] | ||
), | ||
.testTarget( | ||
name: "CombineSchedulersTests", | ||
dependencies: [ | ||
"CombineSchedulers" | ||
] | ||
), | ||
], | ||
swiftLanguageVersions: [.v6] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.