-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
76 lines (74 loc) · 1.5 KB
/
Package.swift
File metadata and controls
76 lines (74 loc) · 1.5 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// swift-tools-version: 6.0
import PackageDescription
let package = Package(
name: "combine-extensions",
platforms: [
.iOS(.v13),
.macOS(.v10_15),
.macCatalyst(.v13),
.tvOS(.v13),
.watchOS(.v6),
],
products: [
.library(
name: "CombineExtensions",
type: .static,
targets: ["CombineExtensions"]
),
.library(
name: "CombineExtensionsMacros",
type: .static,
targets: ["CombineExtensionsMacros"]
)
],
dependencies: [
.package(
url: "https://github.com/capturecontext/combine-interception.git",
.upToNextMajor(from: "0.4.0")
),
.package(
url: "https://github.com/pointfreeco/combine-schedulers.git",
.upToNextMajor(from: "1.0.0")
),
.package(
url: "https://github.com/pointfreeco/swift-concurrency-extras.git",
.upToNextMajor(from: "1.0.0")
),
],
targets: [
.target(
name: "CombineExtensions",
dependencies: [
.product(
name: "CombineInterception",
package: "combine-interception"
),
.product(
name: "CombineSchedulers",
package: "combine-schedulers"
),
.product(
name: "ConcurrencyExtras",
package: "swift-concurrency-extras"
),
]
),
.target(
name: "CombineExtensionsMacros",
dependencies: [
.target(name: "CombineExtensions"),
.product(
name: "CombineInterceptionMacros",
package: "combine-interception"
),
]
),
.testTarget(
name: "CombineExtensionsTests",
dependencies: [
.target(name: "CombineExtensions"),
]
),
],
swiftLanguageModes: [.v6]
)