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 次下载
11KB
184 行
irctokens-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);