| CARVIEW |
Select Language
HTTP/1.1 200 OK
Connection: keep-alive
Server: nginx/1.24.0 (Ubuntu)
Content-Type: text/html; charset=utf-8
Cache-Control: public, max-age=300
Content-Encoding: gzip
Via: 1.1 varnish, 1.1 varnish
Accept-Ranges: bytes
Age: 0
Date: Sat, 17 Jan 2026 01:09:47 GMT
X-Served-By: cache-dfw-kdal2120067-DFW, cache-bom-vanm7210065-BOM
X-Cache: MISS, MISS
X-Cache-Hits: 0, 0
X-Timer: S1768612187.800467,VS0,VE775
Vary: Accept, Accept-Encoding
transfer-encoding: chunked
bencodex: Bencodex reader/writer for Haskell
[Skip to Readme]
bencodex: Bencodex reader/writer for Haskell
Please see the README on GitHub at https://github.com/dahlia/bencodex-haskell#readme.
[Skip to Readme]
Modules
[Index] [Quick Jump]
Downloads
- bencodex-1.0.0.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
- No Candidates
| Versions [RSS] | 1.0.0 |
|---|---|
| Change log | CHANGES.md |
| Dependencies | attoparsec (>=0.12 && <1), base (>=4.7 && <5), bytestring, hashable, text, unordered-containers [details] |
| License | GPL-3.0-or-later |
| Copyright | © 2018 Hong Minhee |
| Author | Hong Minhee <hong.minhee@gmail.com> |
| Maintainer | Hong Minhee <hong.minhee@gmail.com> |
| Uploaded | by hongminhee at 2018-11-05T22:08:53Z |
| Category | Serialization |
| Home page | https://github.com/dahlia/bencodex-haskell#readme |
| Bug tracker | https://github.com/dahlia/bencodex-haskell/issues |
| Source repo | head: git clone https://github.com/dahlia/bencodex-haskell |
| Distributions | |
| Reverse Dependencies | 1 direct, 0 indirect [details] |
| Downloads | 610 total (2 in the last 30 days) |
| Rating | 2.0 (votes: 1) [estimated by Bayesian average] |
| Your Rating |
|
| Status | Docs available [build log] Last success reported on 2018-11-05 [all 1 reports] |
Readme for bencodex-1.0.0
[back to package description]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.