-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Address @shared sendability. * Undo UncheckedSendable<UserDefaults>. * clean up * wip * drop AnySendable. * wip * Address `Effect.throttle` sendability (#3325) * Address effect cancellation sendability (#3326) * Address effect cancellation sendability * fix * wip * wip * Separate SendableDefaultSubscript from DefaultSubscript. * fix test * drop escaping * switch on swift 6 language mode * xcode 16 * update test * wip --------- Co-authored-by: Stephen Celis <stephen@stephencelis.com>
- Loading branch information
1 parent
83ed123
commit 7c6fb26
Showing
19 changed files
with
237 additions
and
113 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
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,97 @@ | ||
// swift-tools-version:6.0 | ||
|
||
import CompilerPluginSupport | ||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "swift-composable-architecture", | ||
platforms: [ | ||
.iOS(.v13), | ||
.macOS(.v10_15), | ||
.tvOS(.v13), | ||
.watchOS(.v6), | ||
], | ||
products: [ | ||
.library( | ||
name: "ComposableArchitecture", | ||
targets: ["ComposableArchitecture"] | ||
) | ||
], | ||
dependencies: [ | ||
.package(url: "https://github.com/apple/swift-collections", from: "1.1.0"), | ||
.package(url: "https://github.com/google/swift-benchmark", from: "0.1.0"), | ||
.package(url: "https://github.com/pointfreeco/combine-schedulers", from: "1.0.2"), | ||
.package(url: "https://github.com/pointfreeco/swift-case-paths", from: "1.5.4"), | ||
.package(url: "https://github.com/pointfreeco/swift-concurrency-extras", from: "1.1.0"), | ||
.package(url: "https://github.com/pointfreeco/swift-custom-dump", from: "1.3.2"), | ||
.package(url: "https://github.com/pointfreeco/swift-dependencies", from: "1.3.5"), | ||
.package(url: "https://github.com/pointfreeco/swift-identified-collections", from: "1.1.0"), | ||
.package(url: "https://github.com/pointfreeco/swift-macro-testing", from: "0.2.0"), | ||
.package(url: "https://github.com/pointfreeco/swift-navigation", from: "2.1.0"), | ||
.package(url: "https://github.com/pointfreeco/swift-perception", from: "1.3.4"), | ||
.package(url: "https://github.com/pointfreeco/xctest-dynamic-overlay", from: "1.2.2"), | ||
.package(url: "https://github.com/swiftlang/swift-docc-plugin", from: "1.0.0"), | ||
.package(url: "https://github.com/swiftlang/swift-syntax", "509.0.0"..<"601.0.0-prerelease"), | ||
], | ||
targets: [ | ||
.target( | ||
name: "ComposableArchitecture", | ||
dependencies: [ | ||
"ComposableArchitectureMacros", | ||
.product(name: "CasePaths", package: "swift-case-paths"), | ||
.product(name: "CombineSchedulers", package: "combine-schedulers"), | ||
.product(name: "ConcurrencyExtras", package: "swift-concurrency-extras"), | ||
.product(name: "CustomDump", package: "swift-custom-dump"), | ||
.product(name: "Dependencies", package: "swift-dependencies"), | ||
.product(name: "DependenciesMacros", package: "swift-dependencies"), | ||
.product(name: "IdentifiedCollections", package: "swift-identified-collections"), | ||
.product(name: "IssueReporting", package: "xctest-dynamic-overlay"), | ||
.product(name: "OrderedCollections", package: "swift-collections"), | ||
.product(name: "Perception", package: "swift-perception"), | ||
.product(name: "SwiftUINavigation", package: "swift-navigation"), | ||
.product(name: "UIKitNavigation", package: "swift-navigation"), | ||
], | ||
resources: [ | ||
.process("Resources/PrivacyInfo.xcprivacy") | ||
] | ||
), | ||
.testTarget( | ||
name: "ComposableArchitectureTests", | ||
dependencies: [ | ||
"ComposableArchitecture", | ||
.product(name: "IssueReportingTestSupport", package: "xctest-dynamic-overlay"), | ||
] | ||
), | ||
.macro( | ||
name: "ComposableArchitectureMacros", | ||
dependencies: [ | ||
.product(name: "SwiftSyntaxMacros", package: "swift-syntax"), | ||
.product(name: "SwiftCompilerPlugin", package: "swift-syntax"), | ||
] | ||
), | ||
.testTarget( | ||
name: "ComposableArchitectureMacrosTests", | ||
dependencies: [ | ||
"ComposableArchitectureMacros", | ||
.product(name: "MacroTesting", package: "swift-macro-testing"), | ||
] | ||
), | ||
.executableTarget( | ||
name: "swift-composable-architecture-benchmark", | ||
dependencies: [ | ||
"ComposableArchitecture", | ||
.product(name: "Benchmark", package: "swift-benchmark"), | ||
] | ||
), | ||
], | ||
swiftLanguageModes: [.v6] | ||
) | ||
|
||
for target in package.targets where target.type == .system || target.type == .test { | ||
target.swiftSettings = target.swiftSettings ?? [] | ||
target.swiftSettings?.append(contentsOf: [ | ||
.swiftLanguageMode(.v5), | ||
.enableExperimentalFeature("StrictConcurrency"), | ||
.enableUpcomingFeature("InferSendableFromCaptures") | ||
]) | ||
} |
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.