-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathqrcode.cabal
61 lines (54 loc) · 2.1 KB
/
qrcode.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
name: qrcode
version: 0.1.4
synopsis: QR Code library in pure Haskell
license: BSD3
license-file: LICENSE
author: Chris Yuen
maintainer: [email protected]
category: Codec
build-type: Simple
cabal-version: >=1.8
description:
QR Code encoder (and future decoder) in pure Haskell.
data-files: TODO Example.hs README.markdown
source-repository head
type: git
location: https://github.com/kizzx2/haskell-qrcode
flag Prof
default: False
library
exposed-modules: Codec.Binary.QRCode
other-modules: Codec.Binary.QRCode.Blocks,
Codec.Binary.QRCode.FormatInfo,
Codec.Binary.QRCode.GaloisField,
Codec.Binary.QRCode.Masks,
Codec.Binary.QRCode.Matrix,
Codec.Binary.QRCode.Placement,
Codec.Binary.QRCode.Spec,
Codec.Binary.QRCode.Utils,
Codec.Binary.QRCode.VersionInfo,
Codec.Binary.QRCode.Modes.Numeric,
Codec.Binary.QRCode.Modes.Alphanumeric,
Codec.Binary.QRCode.Modes.EightBit
build-depends: base >= 4 && < 5, containers, array, mtl, vector
ghc-options: -Wall
test-suite qrcode-test
type: exitcode-stdio-1.0
main-is: test.hs
build-depends: base >= 4 && < 5, containers, array, mtl, vector,
hedgehog, hedgehog-quickcheck, exceptions
ghc-options: -Wall -threaded -O2
hs-source-dirs: test, .
other-modules: Codec.Binary.QRCode,
Codec.Binary.QRCode.Blocks,
Codec.Binary.QRCode.FormatInfo,
Codec.Binary.QRCode.GaloisField,
Codec.Binary.QRCode.Masks,
Codec.Binary.QRCode.Matrix,
Codec.Binary.QRCode.Placement,
Codec.Binary.QRCode.Spec,
Codec.Binary.QRCode.Utils,
Codec.Binary.QRCode.VersionInfo,
Codec.Binary.QRCode.Modes.Numeric,
Codec.Binary.QRCode.Modes.Alphanumeric,
Codec.Binary.QRCode.Modes.EightBit