Add swiftSettings for strict concurrency but comment it out for now.

This commit is contained in:
Brent Simmons
2024-03-10 18:24:14 -07:00
parent 917d433deb
commit f2fea32111

View File

@@ -1,5 +1,4 @@
// swift-tools-version: 5.10
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
@@ -16,16 +15,17 @@ let package = Package(
.package(path: "../FMDB"),
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
.target(
name: "Database",
dependencies: [
"FMDB"
]
// swiftSettings: [
// .enableExperimentalFeature("StrictConcurrency")
// ]
),
.testTarget(
name: "DatabaseTests",
dependencies: ["Database"]),
]
name: "DatabaseTests",
dependencies: ["Database"]),
]
)