Skip to content

Commit 385a85f

Browse files
authored
Merge branch 'main' into cancel-next-invocation
2 parents 36171e1 + 5de00c9 commit 385a85f

File tree

2 files changed

+176
-82
lines changed

2 files changed

+176
-82
lines changed

Package.swift

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ let package = Package(
1919
dependencies: [
2020
.package(url: "https://github.com/apple/swift-nio.git", from: "2.81.0"),
2121
.package(url: "https://github.com/apple/swift-log.git", from: "1.5.4"),
22+
.package(url: "https://github.com/apple/swift-collections.git", from: "1.1.4"),
2223
],
2324
targets: [
2425
.target(
@@ -31,10 +32,10 @@ let package = Package(
3132
.target(
3233
name: "AWSLambdaRuntimeCore",
3334
dependencies: [
35+
.product(name: "DequeModule", package: "swift-collections"),
3436
.product(name: "Logging", package: "swift-log"),
3537
.product(name: "NIOHTTP1", package: "swift-nio"),
3638
.product(name: "NIOCore", package: "swift-nio"),
37-
.product(name: "NIOConcurrencyHelpers", package: "swift-nio"),
3839
.product(name: "NIOPosix", package: "swift-nio"),
3940
]
4041
),

0 commit comments

Comments
 (0)