Skip to content

Commit f94018a

Browse files
committed
Merge branch 'develop'
2 parents aa0d544 + 50f292c commit f94018a

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

Package.swift

+1-1
Original file line numberDiff line numberDiff 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" ]),

README.md

+13
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,19 @@ SwiftNIO-IRC is a Internet Relay Chat
1212
and 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+
1528
NIOIRC is a SwiftNIO port of the
1629
[Noze.io miniirc](https://github.com/NozeIO/Noze.io/tree/master/Samples/miniirc)
1730
example from 2016.

Sources/IRC/IRCClientOptions.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import protocol NIO.EventLoopGroup
1616
import class NIO.MultiThreadedEventLoopGroup
1717

1818
fileprivate let onDemandSharedEventLoopGroup =
19-
MultiThreadedEventLoopGroup(numThreads: 1)
19+
MultiThreadedEventLoopGroup(numberOfThreads: 1)
2020

2121
/// Configuration options for the socket connects
2222
open class ConnectOptions : CustomStringConvertible {

0 commit comments

Comments
 (0)