File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ let package = Package(
1010 ] ,
1111 dependencies: [
1212 . package ( url: " https://github.com/apple/swift-nio.git " ,
13- from: " 1.5.1 " )
13+ from: " 1.8.0 " )
1414 ] ,
1515 targets: [
1616 . 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
1212and a simple
1313[ IRC client] ( Sources/IRC ) .
1414
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+
1528NIOIRC is a SwiftNIO port of the
1629[ Noze.io miniirc] ( https://github.com/NozeIO/Noze.io/tree/master/Samples/miniirc )
1730example from 2016.
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import protocol NIO.EventLoopGroup
1616import class NIO. MultiThreadedEventLoopGroup
1717
1818fileprivate let onDemandSharedEventLoopGroup =
19- MultiThreadedEventLoopGroup ( numThreads : 1 )
19+ MultiThreadedEventLoopGroup ( numberOfThreads : 1 )
2020
2121/// Configuration options for the socket connects
2222open class ConnectOptions : CustomStringConvertible {
You can’t perform that action at this time.
0 commit comments