irc icon indicating copy to clipboard operation
irc copied to clipboard

the irc crate – usable, async IRC for Rust

Results 45 irc issues
Sort by recently updated
recently updated
newest added

I seem to be having an issue where I'll get an error of `Io(OS { code: 32, kind: BrokenPipe, message: "Broken pipe" })` at (1) (`tx.send()` also gives the prepended...

When using either Client or Sender's send_mode(target, modes) function only the first mode in the array is set. For example this will only set mode #channel +v nickname ``` sender.send_mode(&channel,...

bug

Hey thanks for the awesome library @aatxe. I can't seem to join any `+r` channels, because the bot joins channels before waiting to be identified. Edit: This also causes the...

enhancement

There are currently two rustsec advisories associated with the `chrono` crate, because of the way it implements localtime. In its current implementation, there is a risk of segmentation faults on...

The readme example hasn't kept pace with the [API chage](https://github.com/aatxe/irc/blob/develop/src/client/data/config.rs#L147). Also, I find it helpful to include the deps required by the example.

This PR doesn't change this library's behavior. It only fixes linter warnings.

First off, thank you very much for your work on this crate. I've had a lot of fun maintaining my IRC bot written against this library for over a year...

enhancement
good first issue

Hi! I'm writing a bot that I'm hoping will be able to run on EC2. Unfortunately Freenode require SASL authentication from certain IP's - and the server password method of...

These links in the README no longer link to IRCv3.1 and IRCv3.2 specifications: https://github.com/aatxe/irc/blame/develop/README.md#L15-L18 They now redirect here https://ircv3.net/irc/ which shows various IRCv3 extensions. Is there a list of which...

docs

Running `target\debug\examples\convertconf.exe -i client_config.json -o client_config.toml` thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: Io(Os { code: 2, kind: NotFound, message: "The system cannot find the file specified."...

question