mirror of
https://github.com/swift-server/swift-memcache-gsoc.git
synced 2026-05-03 07:42:31 +00:00
36c643a056
Motivation: Swift 6.0 is no longer supported, we should bump the tools version and remove it from our CI. Modifications: * Bump the Swift tools version to Swift 6.1 * Remove Swift 6.0 jobs where appropriate in main.yml, pull_request.yml Result: Code reflects our support window.
82 lines
2.7 KiB
Swift
82 lines
2.7 KiB
Swift
// swift-tools-version:6.1
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This source file is part of the swift-memcache-gsoc open source project
|
|
//
|
|
// Copyright (c) 2023 Apple Inc. and the swift-memcache-gsoc project authors
|
|
// Licensed under Apache License v2.0
|
|
//
|
|
// See LICENSE.txt for license information
|
|
// See CONTRIBUTORS.txt for the list of swift-memcache-gsoc project authors
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "swift-memcache-gsoc",
|
|
platforms: [
|
|
.macOS(.v13),
|
|
.iOS(.v16),
|
|
.watchOS(.v9),
|
|
.tvOS(.v16),
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "Memcache",
|
|
targets: ["Memcache"]
|
|
)
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/apple/swift-nio.git", from: "2.76.1"),
|
|
.package(url: "https://github.com/apple/swift-log.git", from: "1.0.0"),
|
|
.package(url: "https://github.com/swift-server/swift-service-lifecycle.git", from: "2.0.0"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "Memcache",
|
|
dependencies: [
|
|
.product(name: "NIOCore", package: "swift-nio"),
|
|
.product(name: "NIOPosix", package: "swift-nio"),
|
|
.product(name: "NIOEmbedded", package: "swift-nio"),
|
|
.product(name: "Logging", package: "swift-log"),
|
|
.product(name: "ServiceLifecycle", package: "swift-service-lifecycle"),
|
|
]
|
|
),
|
|
.testTarget(
|
|
name: "SwiftMemcacheTests",
|
|
dependencies: ["Memcache"]
|
|
),
|
|
.executableTarget(
|
|
name: "MemcacheExample",
|
|
dependencies: [
|
|
.target(name: "Memcache")
|
|
]
|
|
),
|
|
]
|
|
)
|
|
|
|
for target in package.targets {
|
|
var settings = target.swiftSettings ?? []
|
|
settings.append(.enableExperimentalFeature("StrictConcurrency=complete"))
|
|
target.swiftSettings = settings
|
|
}
|
|
|
|
// --- 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 --- //
|