Browse Source

Merge pull request #445 from fubotv/master

Platform deployment targets
Kishikawa Katsumi 5 năm trước cách đây
mục cha
commit
3d66cfc28a
1 tập tin đã thay đổi với 4 bổ sung1 xóa
  1. 4 1
      Package.swift

+ 4 - 1
Package.swift

@@ -1,4 +1,4 @@
-// swift-tools-version:4.0
+// swift-tools-version:5.0
 
 //  Package.swift
 //  KeychainAccess
@@ -11,6 +11,9 @@ import PackageDescription
 
 let package = Package(
     name: "KeychainAccess",
+    platforms: [
+        .macOS(.v10_10), .iOS(.v8), .tvOS(.v9), .watchOS(.v2)
+    ],
     products: [
         .library(name: "KeychainAccess", targets: ["KeychainAccess"])
     ],