mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 07:50:43 +00:00
Bumps [github.com/apple/swift-testing](https://github.com/apple/swift-testing) from 0.99.0 to 6.3.1. - [Release notes](https://github.com/apple/swift-testing/releases) - [Commits](https://github.com/apple/swift-testing/compare/0.99.0...6.3.1) --- updated-dependencies: - dependency-name: github.com/apple/swift-testing dependency-version: 6.3.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
55 lines
1.7 KiB
Swift
55 lines
1.7 KiB
Swift
// swift-tools-version: 6.2
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "swabble",
|
|
platforms: [
|
|
.macOS(.v15),
|
|
.iOS(.v17),
|
|
],
|
|
products: [
|
|
.library(name: "Swabble", targets: ["Swabble"]),
|
|
.library(name: "SwabbleKit", targets: ["SwabbleKit"]),
|
|
.executable(name: "swabble", targets: ["SwabbleCLI"]),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/steipete/Commander.git", exact: "0.2.2"),
|
|
.package(url: "https://github.com/apple/swift-testing", from: "6.3.1"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "Swabble",
|
|
path: "Sources/SwabbleCore",
|
|
swiftSettings: []),
|
|
.target(
|
|
name: "SwabbleKit",
|
|
path: "Sources/SwabbleKit",
|
|
swiftSettings: [
|
|
.enableUpcomingFeature("StrictConcurrency"),
|
|
]),
|
|
.executableTarget(
|
|
name: "SwabbleCLI",
|
|
dependencies: [
|
|
"Swabble",
|
|
"SwabbleKit",
|
|
.product(name: "Commander", package: "Commander"),
|
|
],
|
|
path: "Sources/swabble"),
|
|
.testTarget(
|
|
name: "SwabbleKitTests",
|
|
dependencies: [
|
|
"SwabbleKit",
|
|
.product(name: "Testing", package: "swift-testing"),
|
|
],
|
|
swiftSettings: [
|
|
.enableUpcomingFeature("StrictConcurrency"),
|
|
]),
|
|
.testTarget(
|
|
name: "swabbleTests",
|
|
dependencies: [
|
|
"Swabble",
|
|
.product(name: "Testing", package: "swift-testing"),
|
|
]),
|
|
],
|
|
swiftLanguageModes: [.v6])
|