Skip to content

Commit

Permalink
Remove Swift 5.7.1 Swift tools (#3203)
Browse files Browse the repository at this point in the history
We dropped language supporrt in #3185 but forgot to remove the older
package file.
  • Loading branch information
stephencelis authored Jun 25, 2024
1 parent b5828b2 commit bf0d2ac
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 99 deletions.
25 changes: 23 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// swift-tools-version:5.7.1
// swift-tools-version:5.9

import CompilerPluginSupport
import PackageDescription

let package = Package(
Expand All @@ -19,27 +20,33 @@ let package = Package(
dependencies: [
.package(url: "https://github.com/apple/swift-collections", from: "1.1.0"),
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-syntax", "509.0.0"..<"601.0.0"),
.package(url: "https://github.com/google/swift-benchmark", from: "0.1.0"),
.package(url: "https://github.com/pointfreeco/combine-schedulers", from: "1.0.0"),
.package(url: "https://github.com/pointfreeco/swift-case-paths", from: "1.3.0"),
.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.0"),
.package(url: "https://github.com/pointfreeco/swift-dependencies", from: "1.0.0"),
.package(url: "https://github.com/pointfreeco/swift-dependencies", from: "1.1.0"),
.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-perception", from: "1.1.7"),
.package(url: "https://github.com/pointfreeco/swiftui-navigation", from: "1.1.0"),
.package(url: "https://github.com/pointfreeco/xctest-dynamic-overlay", from: "1.1.0"),
],
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: "OrderedCollections", package: "swift-collections"),
.product(name: "Perception", package: "swift-perception"),
.product(name: "SwiftUINavigationCore", package: "swiftui-navigation"),
.product(name: "XCTestDynamicOverlay", package: "xctest-dynamic-overlay"),
],
Expand All @@ -53,6 +60,20 @@ let package = Package(
"ComposableArchitecture"
]
),
.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: [
Expand Down
97 changes: 0 additions & 97 deletions Package@swift-5.9.swift

This file was deleted.

0 comments on commit bf0d2ac

Please sign in to comment.