-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
23 lines (21 loc) · 766 Bytes
/
Copy pathPackage.swift
File metadata and controls
23 lines (21 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// swift-tools-version: 5.7
import PackageDescription
let package = Package(
name: "STTTool",
platforms: [.macOS(.v12)],
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.1.0"),
.package(url: "https://github.com/AudioKit/AudioKit.git", from: "5.6.0"),
.package(url: "https://github.com/exPHAT/SwiftWhisper.git", from: "1.0.0"),
],
targets: [
.executableTarget(
name: "STTTool",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
.product(name: "AudioKit", package: "AudioKit"),
.product(name: "SwiftWhisper", package: "SwiftWhisper"),
]
),
]
)