Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
atdrendel committed Aug 28, 2023
1 parent 2fa1462 commit c79f78d
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 12 deletions.
29 changes: 19 additions & 10 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/shareup/async-extensions.git",
"state" : {
"revision" : "59504194f84b8c66a27503b5fd0640ac9b01f42a",
"version" : "4.1.0"
"revision" : "f8dec7a227bbbe15fd4df90c787d4c73e91451ba",
"version" : "4.2.1"
}
},
{
Expand Down Expand Up @@ -41,26 +41,35 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-nio.git",
"state" : {
"revision" : "9b2848d76f5caad08b97e71a04345aa5bdb23a06",
"version" : "2.49.0"
"revision" : "cf281631ff10ec6111f2761052aa81896a83a007",
"version" : "2.58.0"
}
},
{
"identity" : "swift-nio-extras",
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-nio-extras.git",
"state" : {
"revision" : "0e0d0aab665ff1a0659ce75ac003081f2b1c8997",
"version" : "1.19.0"
}
},
{
"identity" : "swift-nio-ssl",
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-nio-ssl.git",
"state" : {
"revision" : "4fb7ead803e38949eb1d6fabb849206a72c580f3",
"version" : "2.23.0"
"revision" : "320bd978cceb8e88c125dcbb774943a92f6286e9",
"version" : "2.25.0"
}
},
{
"identity" : "swift-nio-transport-services",
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-nio-transport-services.git",
"state" : {
"revision" : "c0d9a144cfaec8d3d596aadde3039286a266c15c",
"version" : "1.15.0"
"revision" : "e7403c35ca6bb539a7ca353b91cc2d8ec0362d58",
"version" : "1.19.0"
}
},
{
Expand All @@ -77,8 +86,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/vapor/websocket-kit.git",
"state" : {
"revision" : "2b8885974e8d9f522e787805000553f4f7cce8a0",
"version" : "2.7.0"
"revision" : "53fe0639a98903858d0196b699720decb42aee7b",
"version" : "2.14.0"
}
}
],
Expand Down
4 changes: 2 additions & 2 deletions Sources/WebSocket/SystemWebSocket.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import AsyncExtensions
import os.log
import Synchronized

private typealias OpenFuture = AsyncExtensions.Future<Void>
private typealias OpenFuture = AsyncThrowingFuture<Void>

private typealias CloseFuture =
AsyncExtensions.Future<(code: WebSocketCloseCode, reason: Data?)>
AsyncThrowingFuture<(code: WebSocketCloseCode, reason: Data?)>

final actor SystemWebSocket: Publisher {
typealias Output = WebSocketMessage
Expand Down

0 comments on commit c79f78d

Please sign in to comment.