forked from StyleShare/HLSCachingReverseProxyServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
21 lines (19 loc) · 797 Bytes
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// swift-tools-version:5.1
import PackageDescription
let package = Package(
name: "HLSCachingReverseProxyServer",
platforms: [
.macOS(.v10_11), .iOS(.v9), .tvOS(.v9)
],
products: [
.library(name: "HLSCachingReverseProxyServer", targets: ["HLSCachingReverseProxyServer"]),
],
dependencies: [
.package(url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "9.0.0")),
.package(url: "https://github.com/devxoul/SafeCollection.git", .upToNextMajor(from: "3.1.0")),
],
targets: [
.target(name: "HLSCachingReverseProxyServer", dependencies: ["Nimble", "SafeCollection"], path: "Source", exclude: ["Info.plist"]),
.testTarget(name: "HLSCachingReverseProxyServerTests", dependencies: ["HLSCachingReverseProxyServer", "Nimble", "SafeCollection"]),
]
)