File tree 3 files changed +13
-0
lines changed
Tests/OpenAPIAsyncHTTPClientTests
3 files changed +13
-0
lines changed Original file line number Diff line number Diff line change
1
+ **Package.swift
Original file line number Diff line number Diff line change @@ -56,3 +56,14 @@ for target in package.targets {
56
56
settings. append ( . enableExperimentalFeature( " StrictConcurrency=complete " ) )
57
57
target. swiftSettings = settings
58
58
}
59
+
60
+ // --- STANDARD CROSS-REPO SETTINGS DO NOT EDIT --- //
61
+ for target in package . targets {
62
+ if target. type != . plugin {
63
+ var settings = target. swiftSettings ?? [ ]
64
+ // https://github.com/swiftlang/swift-evolution/blob/main/proposals/0444-member-import-visibility.md
65
+ settings. append ( . enableUpcomingFeature( " MemberImportVisibility " ) )
66
+ target. swiftSettings = settings
67
+ }
68
+ }
69
+ // --- END: STANDARD CROSS-REPO SETTINGS DO NOT EDIT --- //
Original file line number Diff line number Diff line change 14
14
import XCTest
15
15
import OpenAPIRuntime
16
16
import NIOCore
17
+ import NIOHTTP1
17
18
import NIOPosix
18
19
import AsyncHTTPClient
19
20
@testable import OpenAPIAsyncHTTPClient
You can’t perform that action at this time.
0 commit comments