20 lines
492 B
Swift
20 lines
492 B
Swift
// swift-tools-version:5.5
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "AsyncBackports",
|
|
platforms: [
|
|
.macOS(.v10_15),
|
|
.iOS(.v13),
|
|
.watchOS(.v6),
|
|
.tvOS(.v13),
|
|
],
|
|
products: [
|
|
.library(name: "AsyncBackports", targets: ["AsyncBackports"]),
|
|
],
|
|
targets: [
|
|
.target(name: "AsyncBackports", dependencies: []),
|
|
]
|
|
)
|