forked from haskell/base64-bytestring
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbase64-bytestring.cabal
64 lines (54 loc) · 1.56 KB
/
base64-bytestring.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
52
53
54
55
56
57
58
59
60
61
62
63
64
name: base64-bytestring
version: 0.1.2.1
synopsis: Fast base64 encoding and deconding for ByteStrings
description: Fast base64 encoding and deconding for ByteStrings
homepage: https://github.com/bos/base64-bytestring
bug-reports: https://github.com/bos/base64-bytestring/issues
license: BSD3
license-file: LICENSE
author: Bryan O'Sullivan <[email protected]>
maintainer: Bryan O'Sullivan <[email protected]>
copyright: 2010-2011 Bryan O'Sullivan
category: Data
build-type: Simple
cabal-version: >=1.8
extra-source-files:
README.markdown
benchmarks/BM.hs
tests/Transcode.hs
tests/transcode.py
library
exposed-modules:
Data.ByteString.Base64
Data.ByteString.Base64.URL
Data.ByteString.Base64.Lazy
Data.ByteString.Base64.URL.Lazy
other-modules:
Data.ByteString.Base64.Internal
build-depends:
base == 4.*,
bytestring >= 0.9.0
ghc-options: -Wall -funbox-strict-fields
ghc-prof-options: -auto-all
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Tests.hs
ghc-options:
-Wall -threaded -rtsopts
build-depends:
QuickCheck,
HUnit,
base64-bytestring,
base,
containers,
bytestring,
test-framework,
test-framework-quickcheck2,
test-framework-hunit
source-repository head
type: git
location: git://github.com/bos/base64-bytestring
source-repository head
type: mercurial
location: https://bitbucket.org/bos/base64-bytestring