mirror of
https://github.com/samsonjs/AsyncMonitor.git
synced 2026-03-25 08:25:47 +00:00
25 lines
484 B
Swift
25 lines
484 B
Swift
// swift-tools-version: 6.0
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "AsyncMonitor",
|
|
platforms: [
|
|
.iOS(.v17),
|
|
.macOS(.v14),
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "AsyncMonitor",
|
|
targets: ["AsyncMonitor"]),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "AsyncMonitor"
|
|
),
|
|
.testTarget(
|
|
name: "AsyncMonitorTests",
|
|
dependencies: ["AsyncMonitor"]
|
|
),
|
|
]
|
|
)
|