Skip to content

Commit eab9edf

Browse files
authored
Heavily revise the implementation of EventLoopConnectionPool (#102)
1 parent 1191d55 commit eab9edf

File tree

3 files changed

+166
-143
lines changed

3 files changed

+166
-143
lines changed

Package.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,15 @@ let package = Package(
1515
dependencies: [
1616
.package(url: "https://github.com/apple/swift-nio.git", from: "2.46.0"),
1717
.package(url: "https://github.com/apple/swift-log.git", from: "1.0.0"),
18+
.package(url: "https://github.com/apple/swift-collections.git", from: "1.0.0"),
19+
.package(url: "https://github.com/apple/swift-algorithms.git", from: "1.0.0"),
1820
],
1921
targets: [
2022
.target(name: "AsyncKit", dependencies: [
2123
.product(name: "Logging", package: "swift-log"),
2224
.product(name: "NIO", package: "swift-nio"),
25+
.product(name: "Collections", package: "swift-collections"),
26+
.product(name: "Algorithms", package: "swift-algorithms"),
2327
]),
2428
.testTarget(name: "AsyncKitTests", dependencies: [
2529
.target(name: "AsyncKit"),

0 commit comments

Comments
 (0)