From 177be64ae857a1e28a87af530a7fd0dafe84d92b Mon Sep 17 00:00:00 2001 From: Laszlo Teveli Date: Mon, 2 May 2022 12:14:16 +0200 Subject: [PATCH] Add supported platforms --- Package.resolved | 24 +++++++++++++----------- Package.swift | 7 +++++-- 2 files changed, 18 insertions(+), 13 deletions(-) diff --git a/Package.resolved b/Package.resolved index 528fbc10..3b6d58b8 100644 --- a/Package.resolved +++ b/Package.resolved @@ -1,14 +1,16 @@ { - "pins" : [ - { - "identity" : "swift-docc-plugin", - "kind" : "remoteSourceControl", - "location" : "https://github.com/apple/swift-docc-plugin", - "state" : { - "revision" : "3303b164430d9a7055ba484c8ead67a52f7b74f6", - "version" : "1.0.0" + "object": { + "pins": [ + { + "package": "SwiftDocCPlugin", + "repositoryURL": "https://github.com/apple/swift-docc-plugin", + "state": { + "branch": null, + "revision": "3303b164430d9a7055ba484c8ead67a52f7b74f6", + "version": "1.0.0" + } } - } - ], - "version" : 2 + ] + }, + "version": 1 } diff --git a/Package.swift b/Package.swift index 676cecd2..3b5256a2 100644 --- a/Package.swift +++ b/Package.swift @@ -1,4 +1,4 @@ -// swift-tools-version:5.6 +// swift-tools-version:5.5 // The swift-tools-version declares the minimum version of Swift required to build this package. import PackageDescription @@ -7,7 +7,10 @@ let package = Package( name: "AsyncHTTP", platforms: [ .iOS(.v15), - .macOS(.v12) + .macOS(.v12), + .macCatalyst(.v15), + .tvOS(.v15), + .watchOS(.v8) ], products: [ .library(name: "AsyncHTTP", targets: ["AsyncHTTP"]),