-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.cabal
More file actions
83 lines (78 loc) · 1.61 KB
/
app.cabal
File metadata and controls
83 lines (78 loc) · 1.61 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
cabal-version: 2.2
name: app
version: 0.2.0.1
category: Web
build-type: Simple
synopsis:
Online digital certificate of tequila consumption QR code generator
common shared
default-language: Haskell2010
ghc-options:
-Werror -Weverything -Wno-all-missed-specialisations
-Wno-missed-specialisations -Wno-missing-exported-signatures
-Wno-missing-import-lists -Wno-missing-local-signatures -Wno-safe
-Wno-unsafe -fprint-potential-instances -fwarn-tabs
default-extensions:
NoImplicitPrelude
DataKinds
DefaultSignatures
DeriveGeneric
DeriveLift
DerivingStrategies
DerivingVia
EmptyCase
ExistentialQuantification
FlexibleContexts
FlexibleInstances
GADTs
GeneralizedNewtypeDeriving
LambdaCase
MultiParamTypeClasses
OverloadedLists
OverloadedStrings
QuasiQuotes
RankNTypes
StandaloneDeriving
TypeApplications
library
import: shared
hs-source-dirs: src
exposed-modules: QR
build-depends:
, base
, base-prelude
, base64-bytestring
, bmp
, bytestring
, qrcode-core
, text
, vector
executable app
import: shared
main-is: Main.hs
ghcjs-options: -dedupe
build-depends:
, aeson
, app
, async
, base
, base-prelude
, base64-bytestring
, bytestring
, extra
, jsaddle
, microlens
, microlens-th
, miso
, modern-uri
, network-uri
, qrcode-core
, text
, transformers
if !impl(ghcjs)
build-depends:
, jsaddle-warp
, wai
, wai-app-static
, warp
, websockets