summaryrefslogtreecommitdiff
path: root/bencoding.cabal
diff options
context:
space:
mode:
authorSam T <sta.cs.vsu@gmail.com>2013-04-01 15:17:28 +0400
committerSam T <sta.cs.vsu@gmail.com>2013-04-01 15:17:28 +0400
commitf0a9f8dcb96bc0f012d291fc43a23c2704b79f1a (patch)
treec42a0fad628b2e9a7a5ec7d71e98e148a9a6933e /bencoding.cabal
parent6d7e026b0934b220a60f6515bf07120a3ff7d93d (diff)
+ instance for text
Diffstat (limited to 'bencoding.cabal')
-rw-r--r--bencoding.cabal4
1 files changed, 4 insertions, 0 deletions
diff --git a/bencoding.cabal b/bencoding.cabal
index cfad921..b01d188 100644
--- a/bencoding.cabal
+++ b/bencoding.cabal
@@ -21,14 +21,18 @@ source-repository head
21library 21library
22 exposed-modules: Data.BEncode 22 exposed-modules: Data.BEncode
23 other-modules: 23 other-modules:
24
25-- WARN package text is used only for instance declaration
24 build-depends: base == 4.5.* 26 build-depends: base == 4.5.*
25 , containers >= 0.4.0 27 , containers >= 0.4.0
26 , bytestring >= 0.10.2.0 28 , bytestring >= 0.10.2.0
27 , attoparsec >= 0.10.4.0 29 , attoparsec >= 0.10.4.0
30 , text >= 0.11.2.3
28 , ansi-wl-pprint 31 , ansi-wl-pprint
29 32
30 hs-source-dirs: src 33 hs-source-dirs: src
31 34
35 extensions: PatternGuards
32 ghc-options: -Wall -fno-warn-unused-do-bind 36 ghc-options: -Wall -fno-warn-unused-do-bind
33-- -Werror 37-- -Werror
34 38