From b3a18332ddb07e49cb534d77900e44aa2612a81b Mon Sep 17 00:00:00 2001 From: Edgar Date: Thu, 8 Sep 2022 08:24:13 +0200 Subject: [PATCH] Update bencode-parser-with-nom.md --- content/blog/bencode-parser-with-nom.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/blog/bencode-parser-with-nom.md b/content/blog/bencode-parser-with-nom.md index dfa0587..03334aa 100644 --- a/content/blog/bencode-parser-with-nom.md +++ b/content/blog/bencode-parser-with-nom.md @@ -1,7 +1,7 @@ +++ title = "Creating a bencode parser with nom" description = "The encoding used by the peer-to-peer file sharing system BitTorrent" -date = 2022-09-07 +date = 2022-09-08 [taxonomies] categories = ["rust"] +++ @@ -313,4 +313,4 @@ pub fn parse(source: &[u8]) -> Result, Error<&[u8]>> { } ``` -You can find the full source code here: \ No newline at end of file +You can find the full source code here: