Popularity
2.2
Declining
Activity
0.0
Stable
5
2
0

Monthly Downloads: 5
Programming language: Haskell
License: GNU General Public License v3.0 or later
Tags: Utils     Serialization    
Latest version: v1.0.0

bencodex alternatives and similar packages

Based on the "Serialization" category.
Alternatively, view bencodex alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of bencodex or a related project?

Add another 'Serialization' Package

README

Bencodex reader/writer for Haskell

Build Status

This package implements Bencodex serialization format which extends Bencoding.

> :set -XOverloadedStrings
> import Data.Bencodex
> let Right bVal = decodeStrict "lntfi123eu7:Unicodeu4:blobe"
> bVal
BList [BNull,BBool True,BBool False,BInteger 123,BText "Unicode",BText "blob"]
> encodeStrict bVal
"lntfi123eu7:Unicodeu4:blobe"

Author and license

Written by Hong Minhee, and distributed under GPLv3 or later.


*Note that all licence references and agreements mentioned in the bencodex README section above are relevant to that project's source code only.