File tree 3 files changed +15
-2
lines changed
3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ let package = Package(
10
10
] ,
11
11
dependencies: [
12
12
. package ( url: " https://github.com/apple/swift-nio.git " ,
13
- from: " 1.5.1 " )
13
+ from: " 1.8.0 " )
14
14
] ,
15
15
targets: [
16
16
. target( name: " NIOIRC " , dependencies: [ " NIO " ] ) ,
Original file line number Diff line number Diff line change @@ -12,6 +12,19 @@ SwiftNIO-IRC is a Internet Relay Chat
12
12
and a simple
13
13
[ IRC client] ( Sources/IRC ) .
14
14
15
+ This module contains the protocol implementation and the client, we also
16
+ provide:
17
+ - [ swift-nio-irc-webclient] ( https://github.com/NozeIO/swift-nio-irc-webclient ) -
18
+ a simple IRC webclient + WebSocket gateway based on this module,
19
+ - [ swift-nio-irc-eliza] ( https://github.com/NozeIO/swift-nio-irc-eliza ) -
20
+ a cheap yet scalable therapist,
21
+ - [ swift-nio-irc-server] ( https://github.com/NozeIO/swift-nio-irc-server ) -
22
+ a framework to build IRC servers, and MiniIRCd, a small sample server.
23
+
24
+ To get started with this, pull
25
+ [ swift-nio-irc-server] ( https://github.com/NozeIO/swift-nio-irc-server ) -
26
+ a module to rule them all and in the darkness bind them.
27
+
15
28
NIOIRC is a SwiftNIO port of the
16
29
[ Noze.io miniirc] ( https://github.com/NozeIO/Noze.io/tree/master/Samples/miniirc )
17
30
example from 2016.
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import protocol NIO.EventLoopGroup
16
16
import class NIO. MultiThreadedEventLoopGroup
17
17
18
18
fileprivate let onDemandSharedEventLoopGroup =
19
- MultiThreadedEventLoopGroup ( numThreads : 1 )
19
+ MultiThreadedEventLoopGroup ( numberOfThreads : 1 )
20
20
21
21
/// Configuration options for the socket connects
22
22
open class ConnectOptions : CustomStringConvertible {
You can’t perform that action at this time.
0 commit comments