Skip to content

Commit abb75e3

Browse files
committed
Use SwiftNIO 2.33.0, Remove _NIOConcurrency imports
1 parent 11a29a6 commit abb75e3

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ let package = Package(
1010
],
1111
dependencies: [
1212
.package(url: "https://github.com/apple/swift-log.git", from: "1.0.0"),
13-
.package(url: "https://github.com/apple/swift-nio.git", from: "2.32.3"),
13+
.package(url: "https://github.com/apple/swift-nio.git", from: "2.33.0"),
1414
.package(url: "https://github.com/apple/swift-nio-ssl.git", from: "2.14.0"),
1515
.package(url: "https://github.com/apple/swift-nio-transport-services.git", from: "1.6.0"),
1616
],

Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#if compiler(>=5.5) && canImport(_Concurrency)
22

3-
import _NIOConcurrency
4-
import NIO
3+
import NIOCore
54

65
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
76
extension MQTTClient {

Sources/MQTTNIO/AsyncAwaitSupport/MQTTClientV5+async.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#if compiler(>=5.5) && canImport(_Concurrency)
22

3-
import _NIOConcurrency
4-
import NIO
3+
import NIOCore
54

65
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
76
extension MQTTClient.V5 {

0 commit comments

Comments
 (0)