Skip to content

Commit

Permalink
Relax minimum dependency version for swift-collections (#177)
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
gwynne committed Apr 29, 2024
1 parent fd60c64 commit 9afdc96
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
5 changes: 2 additions & 3 deletions Package@swift-5.9.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 9afdc96

Please sign in to comment.