summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Truzjan <pxqr.sta@gmail.com>2013-09-27 01:36:19 +0400
committerSam Truzjan <pxqr.sta@gmail.com>2013-09-27 01:36:19 +0400
commit01b2449c7d3a83f4474b0406d46be3105ed4f96e (patch)
tree64affdb63545f01d1d5d0beef336f9f6d748dd26
parentde2f275a9695c0b94b5a585a5e742ff8867a3297 (diff)
Update README
-rw-r--r--README.md6
-rw-r--r--base32-bytestring.cabal4
2 files changed, 6 insertions, 4 deletions
diff --git a/README.md b/README.md
index 83da005..69e90b7 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,6 @@
1`base32-bytestring` is efficient [base32][rfc] codec for bytestrings. 1`base32-bytestring` is efficient [base32 and base32hex][rfc] codec for
2The API is similar to [base64-bytestring][base64-pkg] package. 2bytestrings. The API is similar to [base16-bytestring][base16-pkg] and
3[base64-bytestring][base64-pkg] packages.
3 4
4### Performance 5### Performance
5 6
@@ -15,6 +16,7 @@ The API is similar to [base64-bytestring][base64-pkg] package.
15 16
16You can report any issues at [Issue tracker][issues]. 17You can report any issues at [Issue tracker][issues].
17 18
19[base16-pkg]: http://hackage.haskell.org/package/base16-bytestring
18[base64-pkg]: http://hackage.haskell.org/package/base64-bytestring-1.0.0.1 20[base64-pkg]: http://hackage.haskell.org/package/base64-bytestring-1.0.0.1
19[rfc]: http://tools.ietf.org/html/rfc4648 21[rfc]: http://tools.ietf.org/html/rfc4648
20[travis-img]: https://travis-ci.org/cobit/base32-bytestring.png 22[travis-img]: https://travis-ci.org/cobit/base32-bytestring.png
diff --git a/base32-bytestring.cabal b/base32-bytestring.cabal
index edc17dd..ff52525 100644
--- a/base32-bytestring.cabal
+++ b/base32-bytestring.cabal
@@ -8,9 +8,9 @@ copyright: (c) 2013 Sam Truzjan
8category: Codec, Data 8category: Codec, Data
9build-type: Simple 9build-type: Simple
10cabal-version: >= 1.10 10cabal-version: >= 1.10
11synopsis: Fast base32 encoding and decoding for ByteStrings 11synopsis: Fast base32 and base32hex codec for ByteStrings
12description: 12description:
13 Base32 encoding according to RFC4648 13 base32 and base32hex codec according to RFC4648
14 <http://tools.ietf.org/html/rfc4648> 14 <http://tools.ietf.org/html/rfc4648>
15 This package have API similar to base64-bytestring. 15 This package have API similar to base64-bytestring.
16 16