-
Notifications
You must be signed in to change notification settings - Fork 4
/
dataenc.cabal
51 lines (48 loc) · 1.59 KB
/
dataenc.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: dataenc
version: 0.14.999
license: BSD3
license-file: LICENSE
cabal-version: >= 1.6
build-type: Simple
author: Magnus Therning
maintainer: none
homepage: http://www.haskell.org/haskellwiki/Library/Data_encoding
copyright: Magnus Therning, 2007-2012
category: Codec
synopsis: Data encoding library
description: Data encoding library currently providing Base16, Base32,
Base32Hex, Base64, Base64Url, Base85, Python string escaping,
Quoted-Printable, URL encoding, uuencode, xxencode, and yEncoding.
extra-source-files: test-src/DataencUT.hs test-src/DataencQC.hs test-src/Test.hs GNUmakefile
flag tests
Description: Build unit and quickcheck tests.
Default: False
library
hs-source-dirs: src
build-depends: array >= 0.1.0 && < 0.5, base >= 3.0.0 && < 4.7, containers >= 0.1.0 && < 0.6
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.PythonString
Codec.Binary.QuotedPrintable
Codec.Binary.Url
Codec.Binary.Uu
Codec.Binary.Xx
Codec.Binary.Yenc
other-modules:
Codec.Binary.Util
executable tests
main-is: Test.hs
hs-source-dirs: test-src src
-- ghc-options: -fhpc
if flag(tests)
build-depends: test-framework, test-framework-hunit, HUnit,
test-framework-quickcheck2, QuickCheck ==2.5.*,
test-framework-th
else
buildable: False