summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Truzjan <pxqr.sta@gmail.com>2013-12-08 04:20:29 +0400
committerSam Truzjan <pxqr.sta@gmail.com>2013-12-08 04:20:29 +0400
commit4e40597f4024be73f50a392642180d5e36c47143 (patch)
tree08f65fb517bdd154fcda556f4e51aec6952390db
parentc76b4ff63ed2913d89ba924a80c04b51b57b76d0 (diff)
Expose parser and builder
-rw-r--r--src/Data/BEncode/Internal.hs9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/Data/BEncode/Internal.hs b/src/Data/BEncode/Internal.hs
index 3552bc9..4282cbf 100644
--- a/src/Data/BEncode/Internal.hs
+++ b/src/Data/BEncode/Internal.hs
@@ -6,10 +6,15 @@
6-- Portability : portable 6-- Portability : portable
7-- 7--
8-- This module provides bencode values serialization. Normally, you 8-- This module provides bencode values serialization. Normally, you
9-- don't need to import this module. 9-- don't need to import this module, use 'Data.BEncode' instead.
10-- 10--
11module Data.BEncode.Internal 11module Data.BEncode.Internal
12 ( parse 12 ( -- * Parsing
13 parser
14 , parse
15
16 -- * Rendering
17 , builder
13 , build 18 , build
14 , ppBEncode 19 , ppBEncode
15 ) where 20 ) where