mirror of
https://github.com/pointfreeco/swift-composable-architecture.git
synced 2025-12-14 20:35:56 +01:00
28 lines
724 B
Swift
28 lines
724 B
Swift
// swift-tools-version:6.0
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "benchmarks",
|
|
platforms: [
|
|
.macOS("14")
|
|
],
|
|
dependencies: [
|
|
.package(path: ".."),
|
|
.package(url: "https://github.com/ordo-one/package-benchmark", from: "1.4.0"),
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "swift-composable-architecture-benchmark",
|
|
dependencies: [
|
|
.product(name: "Benchmark", package: "package-benchmark"),
|
|
.product(name: "ComposableArchitecture", package: "swift-composable-architecture"),
|
|
],
|
|
path: "Benchmarks/swift-composable-architecture-benchmark",
|
|
plugins: [
|
|
.plugin(name: "BenchmarkPlugin", package: "package-benchmark")
|
|
]
|
|
)
|
|
]
|
|
)
|