From 9afdc96113b673819ccdc4819f77e901c698a87a Mon Sep 17 00:00:00 2001 From: Gwynne Raskind Date: Mon, 29 Apr 2024 05:04:19 -0500 Subject: [PATCH] Relax minimum dependency version for swift-collections (#177) * Reduce the minimum required version of swift-collections for the benefit of downstream users who depend on SPM. Also remove spurious swift-docc-plugin dependency. * Reduce swift-nio dependency too. --- Package.swift | 5 ++--- Package@swift-5.9.swift | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/Package.swift b/Package.swift index f707b210..8736dbd4 100644 --- a/Package.swift +++ b/Package.swift @@ -14,10 +14,9 @@ let package = Package( .library(name: "SQLKitBenchmark", targets: ["SQLKitBenchmark"]), ], dependencies: [ - .package(url: "https://github.com/apple/swift-nio.git", from: "2.64.0"), + .package(url: "https://github.com/apple/swift-nio.git", from: "2.62.0"), .package(url: "https://github.com/apple/swift-log.git", from: "1.5.4"), - .package(url: "https://github.com/apple/swift-collections.git", from: "1.1.0"), - .package(url: "https://github.com/apple/swift-docc-plugin.git", from: "1.3.0"), + .package(url: "https://github.com/apple/swift-collections.git", from: "1.0.1"), ], targets: [ .target( diff --git a/Package@swift-5.9.swift b/Package@swift-5.9.swift index 185aea77..3834e70a 100644 --- a/Package@swift-5.9.swift +++ b/Package@swift-5.9.swift @@ -14,10 +14,9 @@ let package = Package( .library(name: "SQLKitBenchmark", targets: ["SQLKitBenchmark"]), ], dependencies: [ - .package(url: "https://github.com/apple/swift-nio.git", from: "2.64.0"), + .package(url: "https://github.com/apple/swift-nio.git", from: "2.62.0"), .package(url: "https://github.com/apple/swift-log.git", from: "1.5.4"), - .package(url: "https://github.com/apple/swift-collections.git", from: "1.1.0"), - .package(url: "https://github.com/apple/swift-docc-plugin.git", from: "1.3.0"), + .package(url: "https://github.com/apple/swift-collections.git", from: "1.0.1"), ], targets: [ .target(