Skip to content

Commit 1f0a9ef

Browse files
authored
A copy of Package.swift with `swift-tools-version` updated to 5.3 and iOS platform updated to iOS 9. Having this as a separate file prevents breaking backwards compatibility with Swift < 5.3 projects that support iOS 8.
1 parent b00f91d commit 1f0a9ef

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

[email protected]

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
// swift-tools-version:5.3
2+
3+
// Package.swift
4+
// KeychainAccess
5+
//
6+
// Created by kishikawa katsumi on 2015/12/4.
7+
// Copyright (c) 2015 kishikawa katsumi. All rights reserved.
8+
//
9+
10+
import PackageDescription
11+
12+
let package = Package(
13+
name: "KeychainAccess",
14+
platforms: [
15+
.macOS(.v10_10), .iOS(.v9), .tvOS(.v9), .watchOS(.v2)
16+
],
17+
products: [
18+
.library(name: "KeychainAccess", targets: ["KeychainAccess"])
19+
],
20+
targets: [
21+
.target(name: "KeychainAccess", path: "Lib/KeychainAccess")
22+
]
23+
)

0 commit comments

Comments
 (0)