File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,10 @@ let concurrencyChecking: [SwiftSetting] = [
40
40
. enableUpcomingFeature( " InferSendableFromCaptures " )
41
41
]
42
42
43
+ let keypathWithMethodMembers : [ SwiftSetting ] = [
44
+ . enableExperimentalFeature( " keypathWithMethodMembers " )
45
+ ]
46
+
43
47
var dependencies : [ Package . Dependency ] {
44
48
if Context . environment [ " SWIFTCI_USE_LOCAL_DEPS " ] != nil {
45
49
[
@@ -198,7 +202,7 @@ let package = Package(
198
202
exclude: [ " CMakeLists.txt " ] ,
199
203
swiftSettings: [
200
204
. enableExperimentalFeature( " AccessLevelOnImport " )
201
- ] + availabilityMacros + concurrencyChecking
205
+ ] + availabilityMacros + concurrencyChecking + keypathWithMethodMembers
202
206
) ,
203
207
]
204
208
)
@@ -217,3 +221,5 @@ package.targets.append(contentsOf: [
217
221
)
218
222
] )
219
223
#endif
224
+
225
+
You can’t perform that action at this time.
0 commit comments