-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathPackage.swift
86 lines (84 loc) · 3.81 KB
/
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
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
77
78
79
80
81
82
83
84
85
86
// swift-tools-version: 5.8
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "telltime",
platforms: [.iOS(.v15), .macOS(.v13)],
products: [
.library(name: "AppFeature", targets: ["AppFeature"]),
.library(name: "ConfigurationFeature", targets: ["ConfigurationFeature"]),
.library(name: "SpeechRecognizerCore", targets: ["SpeechRecognizerCore"]),
.library(name: "TTSCore", targets: ["TTSCore"]),
.library(name: "WidgetFeature", targets: ["WidgetFeature"]),
],
dependencies: [
.package(url: "https://github.com/renaudjenny/RenaudJennyAboutView", from: "1.1.0"),
.package(url: "https://github.com/renaudjenny/SwiftClockUI", from: "2.0.0"),
.package(url: "https://github.com/pointfreeco/swift-composable-architecture", from: "0.52.0"),
.package(url: "https://github.com/pointfreeco/swift-dependencies", from: "0.4.1"),
.package(url: "https://github.com/renaudjenny/swift-past-ten", from: "1.1.0"),
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing", from: "1.11.0"),
.package(url: "https://github.com/renaudjenny/swift-speech-recognizer", from: "1.0.0"),
.package(url: "https://github.com/renaudjenny/swift-to-ten", from: "1.2.0"),
.package(url: "https://github.com/renaudjenny/swift-tts", from: "2.1.2"),
],
targets: [
.target(
name: "AppFeature",
dependencies: [
.product(name: "ComposableArchitecture", package: "swift-composable-architecture"),
"ConfigurationFeature",
.product(name: "RenaudJennyAboutView", package: "RenaudJennyAboutView"),
"SpeechRecognizerCore",
.product(name: "SwiftClockUI", package: "SwiftClockUI"),
.product(name: "SwiftPastTenDependency", package: "swift-past-ten"),
.product(name: "SwiftToTenDependency", package: "swift-to-ten"),
"TTSCore",
]
),
.target(
name: "ConfigurationFeature",
dependencies: [
.product(name: "SwiftClockUI", package: "SwiftClockUI"),
.product(name: "ComposableArchitecture", package: "swift-composable-architecture"),
]
),
.testTarget(
name: "ConfigurationFeatureTests",
dependencies: [
"ConfigurationFeature",
.product(name: "SnapshotTesting", package: "swift-snapshot-testing"),
]
),
.target(
name: "SpeechRecognizerCore",
dependencies: [
.product(name: "ComposableArchitecture", package: "swift-composable-architecture"),
.product(name: "SwiftSpeechRecognizerDependency", package: "swift-speech-recognizer"),
]
),
.testTarget(name: "SpeechRecognizerCoreTests", dependencies: ["SpeechRecognizerCore"]),
.target(
name: "TTSCore",
dependencies: [
.product(name: "ComposableArchitecture", package: "swift-composable-architecture"),
.product(name: "SwiftTTSDependency", package: "swift-tts"),
]
),
.testTarget(
name: "TTSCoreTests",
dependencies: [
"TTSCore",
.product(name: "SnapshotTesting", package: "swift-snapshot-testing"),
]
),
.target(
name: "WidgetFeature",
dependencies: [
.product(name: "Dependencies", package: "swift-dependencies"),
.product(name: "SwiftClockUI", package: "SwiftClockUI"),
.product(name: "SwiftPastTenDependency", package: "swift-past-ten"),
]
)
]
)