Skip to content

Commit 4ec8a0a

Browse files
committed
Add swift-collections dependency
In the future we want to use Deque in RediStack. For this we need to add `swift-collections`.
1 parent 9225dc3 commit 4ec8a0a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Package.swift

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ let package = Package(
2424
],
2525
dependencies: [
2626
.package(url: "https://github.com/apple/swift-atomics.git", from: "1.1.0"),
27+
.package(url: "https://github.com/apple/swift-collections.git", from: "1.0.4"),
2728
.package(url: "https://github.com/apple/swift-log.git", from: "1.0.0"),
2829
.package(url: "https://github.com/apple/swift-metrics.git", "1.0.0" ..< "3.0.0"),
2930
.package(url: "https://github.com/apple/swift-nio.git", from: "2.43.0"),
@@ -34,9 +35,10 @@ let package = Package(
3435
dependencies: [
3536
.product(name: "NIOCore", package: "swift-nio"),
3637
.product(name: "NIOPosix", package: "swift-nio"),
37-
.product(name: "NIO", package: "swift-nio"),
3838
.product(name: "NIOConcurrencyHelpers", package: "swift-nio"),
39+
.product(name: "NIO", package: "swift-nio"),
3940
.product(name: "Atomics", package: "swift-atomics"),
41+
.product(name: "DequeModule", package: "swift-collections"),
4042
.product(name: "Logging", package: "swift-log"),
4143
.product(name: "Metrics", package: "swift-metrics")
4244
]

0 commit comments

Comments
 (0)