4 个版本
0.1.3 | 2024年6月20日 |
---|---|
0.1.2 | 2024年6月19日 |
0.1.1 | 2024年6月18日 |
0.1.0 | 2024年6月18日 |
#1464 在 解析器实现
每月下载量:124
41KB
229 行
bencoding-rs
一个用于在 Rust 中解码 bencoded 数据的简单库。
用法
use bencoding::{decode, Bencode};
fn main() {
let data = b"i42e";
let decoded = decode(data).unwrap();
assert_eq!(decoded, Bencode::Int(42));
}
许可协议
MIT