-
Notifications
You must be signed in to change notification settings - Fork 0
/
qr.cabal
38 lines (36 loc) · 813 Bytes
/
qr.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
name: qr
version: 0.2.0.0
synopsis: Pure Haskell QR encoder library and command line tool
license: BSD3
license-file: LICENSE
author: Paolo Capriotti
maintainer: [email protected]
category: Data
build-type: Simple
cabal-version: >=1.10
library
build-depends:
base,
array,
utf8-string
ghc-options: -Wall -O2
hs-source-dirs: src
exposed-modules:
Data.QR.Encode,
Data.QR.Grouping,
Data.QR.Layout,
Data.QR.ReedSolomon,
Data.QR.Tables,
Data.QR.Types
default-language: Haskell2010
executable cqr
main-is: cqr/cqr.hs
default-language: Haskell2010
build-depends:
base < 5,
array,
gtk,
cairo,
transformers,
optparse-applicative,
qr