Compare commits

...

2 Commits

Author SHA1 Message Date
jesopo 050c7ee75c v0.1.2 2023-03-31 17:51:40 +00:00
jesopo a5471a7dd9 derive Debug on Line 2023-03-31 17:51:26 +00:00
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "irctokens"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
license = "MIT"
description = "RFC1459 and IRCv3 protocol tokeniser"

View File

@ -3,6 +3,7 @@ use std::collections::BTreeMap;
/// A struct representing all the constituent pieces of an RFC1459/IRCv3 protocol line.
///
/// `@tagkey=tagvalue :source COMMAND arg1 arg2 :arg3 with space`
#[derive(Debug)]
pub struct Line {
/// [Message tags] of an IRC line.
/// [`None`] if no message tags were present.