-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
44 lines (42 loc) · 910 Bytes
/
Package.swift
File metadata and controls
44 lines (42 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// swift-tools-version: 6.1
import PackageDescription
let package = Package(
name: "swift-keypaths-extensions",
products: [
.library(
name: "KeyPathsExtensions",
targets: ["KeyPathsExtensions"]
)
],
dependencies: [
.package(
url: "https://github.com/capturecontext/swift-keypath-mapping.git",
.upToNextMajor(from: "0.0.1"),
traits: ["PredefinedConversions"]
),
.package(
url: "https://github.com/capturecontext/swift-marker-protocols.git",
.upToNextMajor(from: "1.5.1")
),
],
targets: [
.target(
name: "KeyPathsExtensions",
dependencies: [
.product(
name: "KeyPathMapping",
package: "swift-keypath-mapping"
),
.product(
name: "SwiftMarkerProtocols",
package: "swift-marker-protocols"
),
]
),
.testTarget(
name: "KeyPathsExtensionsTests",
dependencies: ["KeyPathsExtensions"]
)
],
swiftLanguageModes: [.v6]
)