name: text-utf7 version: 0.1.0.0 synopsis: UTF-7 encoding/decoding for Data.Text description: @text-utf7@ provides encoding/decoding functions for UTF-7 encoded strings. homepage: https://github.com/dpwright/text-utf7 license: BSD3 license-file: LICENSE author: Daniel P. Wright maintainer: dani@dpwright.com copyright: 2014 Daniel P. Wright category: Data build-type: Simple cabal-version: >=1.10 source-repository head type: git location: https://github.com/dpwright/text-utf7 library exposed-modules: Data.Text.Encoding.UTF7.IMAP build-depends: base >= 4.2 && < 5, bytestring >= 0.9.2.1 && < 0.11, text >= 1.0.0.0 && < 1.3 if impl(ghc >= 7.7) build-depends: bytestring >= 0.10.4.0 && < 0.11 else build-depends: bytestring >= 0.9 && < 0.10 hs-source-dirs: src c-sources: cbits/cbits.c default-language: Haskell2010 ghc-options: -O2 -Wall test-suite utf7 type: exitcode-stdio-1.0 main-is: UTF7.hs hs-source-dirs: tests, src c-sources: cbits/cbits.c build-depends: base >=4.2 && <5, bytestring >= 0.9.2.1, quickcheck-instances >= 0.1.0, text >= 1.0.0.0, tasty, tasty-quickcheck, tasty-hunit default-language: Haskell2010