Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 316 Bytes

README.md

File metadata and controls

9 lines (8 loc) · 316 Bytes

RBot-parser

IRC parser with Rust using Nom. Extracted from RBot to its own repo to allow reuse.

Usage

Use the parse_message function to parse an IRC protocol string.

pub fn parse_message(input: &str) -> Result<Message, ParserError>

Check out the tests for examples.