const_irc_message_parser 0.6.0

A 0 dependency, no_std, const-only parser for the IRC message protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# const_irc_message_parser
A 0 dependency, no_std, const-only parser for the IRC message protocol.

## Motivation
I wanted to see how much of an IRC message parser can be written in a const context.
Every public and private function is const.
I was even able to make all the tests const functions even though it ends up being more verbose.

## Documentation
Documentation can be found here: https://docs.rs/const_irc_message_parser

## Acknowledgements
- IRC Message specifications: https://modern.ircdocs.horse
- IRC Message Tags specifications: https://ircv3.net/specs/extensions/message-tags.html
- IRC Formatting specifications: https://modern.ircdocs.horse/formatting