-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathPackage.swift
34 lines (33 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
// swift-tools-version:5.2
import PackageDescription
let package = Package(
name: "VaporTwilioService",
platforms: [
.macOS(.v10_15)
],
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
name: "Twilio",
targets: ["Twilio"]),
],
dependencies: [
// 💧 A server-side Swift web framework.
.package(url: "https://github.com/vapor/vapor.git", from: "4.0.0-rc")
],
targets: [
.target(name: "Twilio", dependencies: [
.product(name: "Vapor", package: "vapor"),
]),
.target(name: "ExampleApp", dependencies: [
.target(name: "Twilio"),
.product(name: "Vapor", package: "vapor"),
]),
.target(name: "ExampleRun", dependencies: [
.target(name: "ExampleApp"),
]),
.testTarget(name: "TwilioTests", dependencies: [
.target(name: "Twilio"),
])
]
)