Make a serde bencode serializer

This commit is contained in:
Igor Katson 2021-07-01 23:37:57 +01:00
parent 563ca78774
commit 5f60f9e1b4
11 changed files with 2436 additions and 142 deletions

View file

@ -1,3 +1,4 @@
pub mod bencode_value;
pub mod buffers;
pub mod chunk_tracker;
pub mod clone_to_owned;
@ -9,7 +10,8 @@ pub mod peer_binary_protocol;
pub mod peer_connection;
pub mod peer_id;
pub mod peer_state;
pub mod serde_bencode;
pub mod serde_bencode_de;
pub mod serde_bencode_ser;
pub mod sha1w;
pub mod spawn_utils;
pub mod speed_estimator;