Skip to content

Commit

Permalink
Update dependencies (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
atdrendel committed Jun 3, 2021
1 parent 25c9078 commit 78df9bf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 15 deletions.
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"repositoryURL": "https://github.com/shareup/synchronized.git",
"state": {
"branch": null,
"revision": "56f5956cbd9cf4bcd2f92153c03ae293dffb0987",
"version": "2.3.0"
"revision": "f01e4a1ee5fbf586d612a8dc0bc068603f6b9450",
"version": "3.0.0"
}
},
{
Expand Down
19 changes: 6 additions & 13 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.2
// swift-tools-version:5.3
import PackageDescription

let package = Package(
Expand All @@ -10,37 +10,30 @@ let package = Package(
.library(
name: "WebSocket",
targets: ["WebSocket"]
),
],
)],
dependencies: [
.package(
name: "Synchronized",
url: "https://github.com/shareup/synchronized.git",
from: "2.3.0"
from: "3.0.0"
),
.package(
name: "WebSocketProtocol",
url: "https://github.com/shareup/websocket-protocol.git",
from: "2.2.0"
),
.package(name: "swift-nio", url: "https://github.com/apple/swift-nio.git", from: "2.0.0"),
],
.package(name: "swift-nio", url: "https://github.com/apple/swift-nio.git", from: "2.0.0")],
targets: [
.target(
name: "WebSocket",
dependencies: [
.product(name: "SynchronizedDynamic", package: "Synchronized"),
"WebSocketProtocol"
]
),
dependencies: ["Synchronized", "WebSocketProtocol"]),
.testTarget(
name: "WebSocketTests",
dependencies: [
.product(name: "NIO", package: "swift-nio"),
.product(name: "NIOHTTP1", package: "swift-nio"),
.product(name: "NIOWebSocket", package: "swift-nio"),
"WebSocket",
]
),
])
]
)

0 comments on commit 78df9bf

Please sign in to comment.