mirror of
https://github.com/pointfreeco/swift-composable-architecture.git
synced 2025-12-20 09:11:33 +01:00
60 lines
1.9 KiB
Swift
60 lines
1.9 KiB
Swift
// swift-tools-version:5.5
|
|
|
|
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(name: "Benchmark", url: "https://github.com/google/swift-benchmark", from: "0.1.0"),
|
|
.package(url: "https://github.com/pointfreeco/combine-schedulers", from: "0.5.3"),
|
|
.package(url: "https://github.com/pointfreeco/swift-case-paths", from: "0.8.0"),
|
|
.package(url: "https://github.com/pointfreeco/swift-custom-dump", from: "0.3.0"),
|
|
.package(url: "https://github.com/pointfreeco/swift-identified-collections", from: "0.3.2"),
|
|
.package(url: "https://github.com/pointfreeco/xctest-dynamic-overlay", from: "0.2.1"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "ComposableArchitecture",
|
|
dependencies: [
|
|
.product(name: "CasePaths", package: "swift-case-paths"),
|
|
.product(name: "CombineSchedulers", package: "combine-schedulers"),
|
|
.product(name: "CustomDump", package: "swift-custom-dump"),
|
|
.product(name: "IdentifiedCollections", package: "swift-identified-collections"),
|
|
.product(name: "XCTestDynamicOverlay", package: "xctest-dynamic-overlay"),
|
|
]
|
|
),
|
|
.testTarget(
|
|
name: "ComposableArchitectureTests",
|
|
dependencies: [
|
|
"ComposableArchitecture"
|
|
]
|
|
),
|
|
.executableTarget(
|
|
name: "swift-composable-architecture-benchmark",
|
|
dependencies: [
|
|
"ComposableArchitecture",
|
|
.product(name: "Benchmark", package: "Benchmark"),
|
|
]
|
|
),
|
|
]
|
|
)
|
|
|
|
#if swift(>=5.6)
|
|
// Add the documentation compiler plugin if possible
|
|
package.dependencies.append(
|
|
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")
|
|
)
|
|
#endif
|