Skip to content

Commit a095fc7

Browse files
authored
Add platform requirements for iOS, watchOS and tvOS (#154)
To use postgres-nio from iOS, watchOS and tvOS the platform requirements need to be set correctly.
1 parent 33eea14 commit a095fc7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Package.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ import PackageDescription
44
let package = Package(
55
name: "postgres-nio",
66
platforms: [
7-
.macOS(.v10_15)
7+
.macOS(.v10_15),
8+
.iOS(.v13),
9+
.watchOS(.v6),
10+
.tvOS(.v13),
811
],
912
products: [
1013
.library(name: "PostgresNIO", targets: ["PostgresNIO"]),

0 commit comments

Comments
 (0)