packages feed

dataenc-0.12.1.0: dataenc.cabal

name: dataenc
version: 0.12.1.0
license: BSD3
license-file: LICENSE
cabal-version: >= 1.2
build-type: Simple
author: Magnus Therning
maintainer: magnus@therning.org
homepage: http://www.haskell.org/haskellwiki/Library/Data_encoding
copyright: Magnus Therning, 2007-2009
category: Codec
synopsis: Data encoding library
description: Data encoding library currently providing Uuencode, Base64,
        Base64Url, Base32, Base32Hex, Base16, Base85, and yEncoding.
extra-source-files: DataencUT.hs DataencQC.hs Test.hs GNUmakefile

library
        hs-source-dirs: src
        build-depends: array >= 0.2.0 && < 0.3, base >= 4.0.0 && < 4.1, containers >= 0.2.0 && < 0.3
        exposed-modules:
                Codec.Binary.Base16
                Codec.Binary.Base32
                Codec.Binary.Base32Hex
                Codec.Binary.Base64
                Codec.Binary.Base64Url
                Codec.Binary.Base85
                Codec.Binary.DataEncoding
                Codec.Binary.Hexadecimal
                Codec.Binary.PythonString
                Codec.Binary.QuotedPrintable
                Codec.Binary.Url
                Codec.Binary.Uu
                Codec.Binary.Xx
                Codec.Binary.Yenc
        other-modules:
                Codec.Binary.Util