File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ let package = Package(
21
21
. library( name: " AsyncHTTPClient " , targets: [ " AsyncHTTPClient " ] ) ,
22
22
] ,
23
23
dependencies: [
24
- . package ( url: " https://github.com/apple/swift-nio.git " , from: " 2.10.1 " ) ,
25
- . package ( url: " https://github.com/apple/swift-nio-ssl.git " , from: " 2.0.0 " ) ,
24
+ . package ( url: " https://github.com/apple/swift-nio.git " , from: " 2.11.0 " ) ,
25
+ . package ( url: " https://github.com/apple/swift-nio-ssl.git " , from: " 2.4.1 " ) ,
26
26
. package ( url: " https://github.com/apple/swift-nio-extras.git " , from: " 1.3.0 " ) ,
27
27
] ,
28
28
targets: [
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ public class HTTPClient {
48
48
public let eventLoopGroup : EventLoopGroup
49
49
let eventLoopGroupProvider : EventLoopGroupProvider
50
50
let configuration : Configuration
51
- let isShutdown = Atomic < Bool > ( value: false )
51
+ let isShutdown = NIOAtomic < Bool> . makeAtomic ( value: false )
52
52
53
53
/// Create an `HTTPClient` with specified `EventLoopGroup` provider and configuration.
54
54
///
You can’t perform that action at this time.
0 commit comments