forked from barisatamer/SwiftGoogleCloudTTS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
26 lines (24 loc) · 1.04 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
// swift-tools-version:5.2
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "SwiftGoogleCloudTTS",
products: [
.library(name: "SwiftGoogleCloudTTS", targets: ["SwiftGoogleCloudTTS"]),
],
dependencies: [
.package(name: "grpc-swift", url: "https://github.com/grpc/grpc-swift.git", from: "1.0.0"),
.package(name: "SwiftProtobuf", url: "https://github.com/apple/swift-protobuf.git", from: "1.7.0"),
.package(name: "Auth", url: "https://github.com/googleapis/google-auth-library-swift.git", from: "0.5.1")
],
targets: [
.target(name: "SwiftGoogleCloudTTS", dependencies: [
.product(name: "GRPC", package: "grpc-swift"),
.product(name: "SwiftProtobuf", package: "SwiftProtobuf"),
.product(name: "OAuth2", package: "Auth")
]),
.testTarget(
name: "SwiftGoogleCloudTTSTests",
dependencies: ["SwiftGoogleCloudTTS"]),
]
)