mirror of
https://github.com/swift-server/swift-openapi-async-http-client.git
synced 2026-05-03 07:42:29 +00:00
5ee8f2dd51
Uses `FoundationEssentials` instead of `Foundation`. Also removes `NIOFoundationCompat`, because it did appear to be used, and that pulled in the entire Foundation. Also disabled the default traits for the `OpenAPIRuntime` to prevent linking Foundation.
66 lines
2.7 KiB
Swift
66 lines
2.7 KiB
Swift
// swift-tools-version:6.1
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This source file is part of the SwiftOpenAPIGenerator open source project
|
|
//
|
|
// Copyright (c) 2023 Apple Inc. and the SwiftOpenAPIGenerator project authors
|
|
// Licensed under Apache License v2.0
|
|
//
|
|
// See LICENSE.txt for license information
|
|
// See CONTRIBUTORS.txt for the list of SwiftOpenAPIGenerator project authors
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
import Foundation
|
|
import PackageDescription
|
|
|
|
// General Swift-settings for all targets.
|
|
let swiftSettings: [SwiftSetting] = [
|
|
// https://github.com/apple/swift-evolution/blob/main/proposals/0335-existential-any.md
|
|
// Require `any` for existential types.
|
|
.enableUpcomingFeature("ExistentialAny"),
|
|
]
|
|
|
|
let package = Package(
|
|
name: "swift-openapi-async-http-client",
|
|
platforms: [.macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6), .visionOS(.v1)],
|
|
products: [.library(name: "OpenAPIAsyncHTTPClient", targets: ["OpenAPIAsyncHTTPClient"])],
|
|
dependencies: [
|
|
.package(url: "https://github.com/apple/swift-nio", from: "2.58.0"),
|
|
.package(url: "https://github.com/swift-server/async-http-client.git", from: "1.23.0"),
|
|
.package(url: "https://github.com/apple/swift-openapi-runtime", from: "1.11.0", traits: []),
|
|
.package(url: "https://github.com/apple/swift-http-types", from: "1.0.0"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "OpenAPIAsyncHTTPClient",
|
|
dependencies: [
|
|
.product(name: "OpenAPIRuntime", package: "swift-openapi-runtime"),
|
|
.product(name: "HTTPTypes", package: "swift-http-types"),
|
|
.product(name: "AsyncHTTPClient", package: "async-http-client"),
|
|
],
|
|
swiftSettings: swiftSettings
|
|
),
|
|
.testTarget(
|
|
name: "OpenAPIAsyncHTTPClientTests",
|
|
dependencies: ["OpenAPIAsyncHTTPClient"],
|
|
swiftSettings: swiftSettings
|
|
),
|
|
]
|
|
)
|
|
|
|
// --- STANDARD CROSS-REPO SETTINGS DO NOT EDIT --- //
|
|
for target in package.targets {
|
|
switch target.type {
|
|
case .regular, .test, .executable:
|
|
var settings = target.swiftSettings ?? []
|
|
// https://github.com/swiftlang/swift-evolution/blob/main/proposals/0444-member-import-visibility.md
|
|
settings.append(.enableUpcomingFeature("MemberImportVisibility"))
|
|
target.swiftSettings = settings
|
|
case .macro, .plugin, .system, .binary: () // not applicable
|
|
@unknown default: () // we don't know what to do here, do nothing
|
|
}
|
|
}
|
|
// --- END: STANDARD CROSS-REPO SETTINGS DO NOT EDIT --- //
|