-
Notifications
You must be signed in to change notification settings - Fork 43
/
Package.swift
33 lines (31 loc) · 854 Bytes
/
Package.swift
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
// swift-tools-version:5.4
import PackageDescription
let package = Package(
name: "TCACoordinators",
platforms: [
.iOS(.v13), .watchOS(.v7), .macOS(.v11), .tvOS(.v13),
],
products: [
.library(
name: "TCACoordinators",
targets: ["TCACoordinators"]
),
],
dependencies: [
.package(url: "https://github.com/johnpatrickmorgan/FlowStacks", "0.3.6" ..< "0.6.0"),
.package(url: "https://github.com/pointfreeco/swift-composable-architecture", from: "1.8.0"),
],
targets: [
.target(
name: "TCACoordinators",
dependencies: [
.product(name: "FlowStacks", package: "FlowStacks"),
.product(name: "ComposableArchitecture", package: "swift-composable-architecture"),
]
),
.testTarget(
name: "TCACoordinatorsTests",
dependencies: ["TCACoordinators"]
),
]
)