-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
43 lines (42 loc) · 1.58 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
37
38
39
40
41
42
43
// swift-tools-version:5.0
import PackageDescription
let package = Package(
name: "SwiftNIO2_XcodeImage",
dependencies: [
/* Add your package dependencies in here
.package(url: "https://github.com/AlwaysRightInstitute/cows.git",
from: "1.0.0"),
*/
.package(url: "https://github.com/apple/swift-nio.git",
from: "2.0.0"),
.package(url: "https://github.com/apple/swift-nio-ssl.git",
from: "2.0.1"),
.package(url: "https://github.com/apple/swift-nio-http2.git",
from: "1.0.1"),
.package(url: "https://github.com/NozeIO/MicroExpress.git",
from: "0.5.2"),
.package(url: "https://github.com/SwiftNIOExtras/swift-nio-redis.git",
from: "0.10.0"),
.package(url: "https://github.com/SwiftNIOExtras/swift-nio-irc.git",
from: "0.7.0"),
.package(url: "https://github.com/NozeIO/swift-nio-redis-client.git",
from: "0.10.0"),
.package(url: "https://github.com/NozeIO/swift-nio-irc-client.git",
from: "0.7.0")
],
targets: [
.target(name: "SwiftNIO2_XcodeImage",
dependencies: [
/* Add your target dependencies in here, e.g.: */
// "cows",
"NIO",
"NIOHTTP1",
"NIOSSL",
"NIOHTTP2",
"MicroExpress",
"NIORedis",
"Redis",
"NIOIRC"
])
]
)