-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
42 lines (41 loc) · 1.54 KB
/
Package.swift
File metadata and controls
42 lines (41 loc) · 1.54 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
// swift-tools-version: 6.2
import PackageDescription
let package = Package(
name: "ReduxDevToolsBehavior",
platforms: [
.macOS(.v13),
.iOS(.v16),
.tvOS(.v16),
.watchOS(.v9),
],
products: [
.library(name: "ReduxDevToolsBehavior", targets: ["ReduxDevToolsBehavior"]),
],
dependencies: [
.package(url: "https://github.com/SwiftRex/SwiftRex.git", branch: "main"),
.package(url: "https://github.com/luizmb/NetworkTools.git", branch: "feature/websocket-bonjour-targets"),
.package(url: "https://github.com/luizmb/FP.git", from: "1.8.1"),
],
targets: [
.target(
name: "ReduxDevToolsBehavior",
dependencies: [
.product(name: "SwiftRex", package: "SwiftRex"),
.product(name: "SwiftRex.Concurrency", package: "SwiftRex"),
.product(name: "Core", package: "NetworkTools"),
.product(name: "WebSocketClient", package: "NetworkTools"),
.product(name: "BonjourService", package: "NetworkTools"),
.product(name: "FP", package: "FP"),
]
),
.testTarget(
name: "ReduxDevToolsBehaviorTests",
dependencies: [
"ReduxDevToolsBehavior",
.product(name: "SwiftRex", package: "SwiftRex"),
.product(name: "SwiftRex.Testing", package: "SwiftRex"),
]
),
],
swiftLanguageModes: [.v6]
)