Skip to content

Commit aa4fed0

Browse files
committed
Update package.swift.
1 parent ee2b8b2 commit aa4fed0

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Package.swift

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ let concurrencyChecking: [SwiftSetting] = [
4040
.enableUpcomingFeature("InferSendableFromCaptures")
4141
]
4242

43+
let keypathWithMethodMembers: [SwiftSetting] = [
44+
.enableExperimentalFeature("keypathWithMethodMembers")
45+
]
46+
4347
var dependencies: [Package.Dependency] {
4448
if Context.environment["SWIFTCI_USE_LOCAL_DEPS"] != nil {
4549
[
@@ -198,7 +202,7 @@ let package = Package(
198202
exclude: ["CMakeLists.txt"],
199203
swiftSettings: [
200204
.enableExperimentalFeature("AccessLevelOnImport")
201-
] + availabilityMacros + concurrencyChecking
205+
] + availabilityMacros + concurrencyChecking + keypathWithMethodMembers
202206
),
203207
]
204208
)
@@ -217,3 +221,5 @@ package.targets.append(contentsOf: [
217221
)
218222
])
219223
#endif
224+
225+

0 commit comments

Comments
 (0)