Popularity
2.1
Stable
Activity
0.0
Stable
5
2
0
Monthly Downloads: 2
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.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of bencodex or a related project?
README
Bencodex reader/writer for Haskell
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.