toby / serde-bencode

Serde backed Bencode encoding/decoding library for Rust.
MIT License
65 stars 16 forks source link

Fix deserialization of nested tuple #25

Closed madadam closed 3 years ago

madadam commented 3 years ago

When deserializing tuples, pass the expected tuple length into visit_seq to make sure the end-of-list marker ("e") is removed from the input.

Fixes #16