-
Notifications
You must be signed in to change notification settings - Fork 3
27 lines (25 loc) · 1013 Bytes
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
// swift-tools-version:5.0
import PackageDescription
let package = Package(
name: "swift-nio-irc-server",
products: [
.library (name: "IRCServer", targets: [ "IRCServer" ]),
.executable(name: "miniircd", targets: [ "miniircd" ])
],
dependencies: [
.package(url: "https://github.com/apple/swift-nio.git",
from: "2.0.0"),
.package(url: "https://github.com/SwiftNIOExtras/swift-nio-irc.git",
from: "0.7.0"),
.package(url: "https://github.com/NozeIO/swift-nio-irc-eliza.git",
from: "0.5.2"),
.package(url: "https://github.com/NozeIO/swift-nio-irc-webclient.git",
from: "0.6.1")
],
targets: [
.target(name: "IRCServer", dependencies: [ "NIO", "NIOIRC" ]),
.target(name: "miniircd", dependencies: [ "IRCServer",
"IRCWebClient",
"IRCElizaBot" ])
]
)