forked from foulkesjohn/BetSwift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
26 lines (25 loc) · 1.03 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:4.0
import PackageDescription
let package = Package(name: "BetSwift",
products: [
.library(name: "BetSwift",
targets: ["BetSwift"])
],
dependencies: [
.package(url: "https://github.com/IBM-Swift/BlueSocket.git", from: "0.12.76"),
.package(url: "https://github.com/IBM-Swift/BlueSSLService.git", from: "0.12.64"),
.package(url: "https://github.com/foulkesjohn/Kitura-net.git", .branch("master")),
.package(url: "https://github.com/apple/swift-nio.git", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-nio-ssl.git", from: "1.0.0"),
.package(url: "https://github.com/vapor-community/clibressl.git", from: "1.0.0")
],
targets: [
.target(name: "BetSwift",
dependencies: ["Socket",
"SSLService",
"Kitura-net",
"NIO",
"NIOOpenSSL",
"CLibreSSL"]),
.testTarget(name: "BetSwiftTests", dependencies: ["BetSwift"])
])