-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPackage.swift
27 lines (25 loc) · 1014 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
// swift-tools-version:4.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: "1.13.2"),
.package(url: "https://github.com/SwiftNIOExtras/swift-nio-irc.git",
from: "0.6.1"),
.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" ])
]
)