#irc-v3 #protocols #rfc1459 #tokeniser

irctokens

RFC1459和IRCv3协议分词器

4个版本

0.1.3 2023年4月8日
0.1.2 2023年3月31日
0.1.1 2023年3月23日
0.1.0 2023年3月23日

7#irc-v3

每月 39 次下载

MIT 许可证

11KB
184

irctokens-rs

crates.io docs.rs

Rust的RFC1459和IRCv3协议分词器库


lib.rs:

用法

分词

let bytes = b"@id=123 :jess!~jess@hostname PRIVMSG #chat :hello there!";
let line = irctokens::Line::tokenise(bytes).unwrap();
println!("{:?}", line.tags);
println!("{:?}", line.source);
println!("{}", line.command);
println!("{:?}", line.arguments);

无运行时依赖