forked from Building42/Telegraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
34 lines (32 loc) · 854 Bytes
/
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.1
import PackageDescription
let package = Package(
name: "Telegraph",
platforms: [
.iOS(.v8),
.tvOS(.v9),
.macOS(.v10_10)
],
products: [
.library(
name: "Telegraph",
targets: ["Telegraph"]
)
],
dependencies: [
.package(url: "https://github.com/robbiehanson/CocoaAsyncSocket.git", from: "7.6.4"),
.package(url: "https://github.com/Building42/HTTPParserC.git", from: "2.9.2")
],
targets: [
.target(
name: "Telegraph",
dependencies: ["CocoaAsyncSocket", "HTTPParserC"],
path: "Sources"
),
.testTarget(
name: "TelegraphTests",
dependencies: ["CocoaAsyncSocket", "HTTPParserC", "Telegraph"],
path: "Tests"
)
]
)