4 个版本
0.2.1 | 2023年9月25日 |
---|---|
0.2.0 |
|
0.1.3 | 2020年5月9日 |
0.1.2 | 2020年4月16日 |
1 in #bencode-parser
21KB
581 行
bencodex
一个 bencode 解析器。
入门指南
use bencodex::{BDict, BNode};
let mut dict = BDict::new();
dict.insert("bar".to_string(), "spam".into());
dict.insert("foo".to_string(), 42.into());
let bnode = BNode::Dict(dict);
let mut file = File::create(
env::current_dir().unwrap().join("name.torrent")
).unwrap();
bnode.serialize(&mut file).unwrap();