Summary: - Config: update Package Stats: - 1 file changed, 1 insertion(+), 1 deletion(-)
34 lines
783 B
Swift
34 lines
783 B
Swift
// swift-tools-version: 5.10
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "LocalData",
|
|
platforms: [
|
|
.iOS(.v17),
|
|
.watchOS(.v10)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "LocalData",
|
|
targets: ["LocalData"]
|
|
),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/apple/swift-testing.git", from: "0.7.0")
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "LocalData"
|
|
),
|
|
.testTarget(
|
|
name: "LocalDataTests",
|
|
dependencies: [
|
|
"LocalData",
|
|
.product(name: "Testing", package: "swift-testing")
|
|
]
|
|
),
|
|
]
|
|
)
|