-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
36 lines (31 loc) · 1.02 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
// swift-tools-version:5.2
// The swift-tools-version declares the minimum version of Swift required to build this package.
/*
This source file is part of the Swift.org open source project
Copyright 2015 Apple Inc. and the Swift project authors
Licensed under Apache License v2.0 with Runtime Library Exception
See http://swift.org/LICENSE.txt for license information
See http://swift.org/CONTRIBUTORS.txt for Swift project authors
*/
import PackageDescription
let package = Package(
name: "PlayingCard",
products: [
.library(name: "PlayingCard", targets: ["PlayingCard"]),
],
dependencies: [
.package(
name: "gRPC",
url: "https://github.com/yulin-liang/grpc.git",
.revision("da6e6c2de9c8cdacd429b1c3b7b150ccb5d7c384")
),
],
targets: [
.target(
name: "PlayingCard",
dependencies: [.product(name: "gRPC-cpp", package: "gRPC"),],
.testTarget(
name: "PlayingCardTests",
dependencies: ["PlayingCard"]),
]
)