Skip to content

Commit

Permalink
Fix warnings, that appeared after requiring Swift 5.4 (#338)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianfett authored Apr 21, 2022
1 parent dbfca16 commit 72bcaf6
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ let package = Package(
.package(url: "https://github.com/apple/swift-nio.git", from: "2.35.0")
],
targets: [
.target(
.executableTarget(
name: "NIOHTTP2Server",
dependencies: [
"NIOHTTP2",
.product(name: "NIOCore", package: "swift-nio"),
.product(name: "NIOPosix", package: "swift-nio"),
.product(name: "NIOHTTP1", package: "swift-nio"),
]),
.target(
.executableTarget(
name: "NIOHTTP2PerformanceTester",
dependencies: [
"NIOHTTP2",
Expand Down Expand Up @@ -73,6 +73,11 @@ let package = Package(
"NIOHPACK",
.product(name: "NIOCore", package: "swift-nio"),
.product(name: "NIOFoundationCompat", package: "swift-nio"),
])
],
resources: [
.copy("Fixtures/large_complex_huffman_b64.txt"),
.copy("Fixtures/large_huffman_b64.txt"),
]
)
]
)

0 comments on commit 72bcaf6

Please sign in to comment.