forked from xkcd/incredible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
incredible.cabal
123 lines (116 loc) · 2.55 KB
/
incredible.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
cabal-version: 3.0
name: incredible
version: 0
-- synopsis:
-- description:
license: BSD-3-Clause
license-file: LICENSE
author: tolt
maintainer: [email protected]
-- copyright:
build-type: Simple
extra-doc-files: CHANGELOG.md
-- extra-source-files:
common warnings
ghc-options: -Wall
common deps
default-language: Haskell2010
ghc-options: -O2
build-depends:
, aeson
, async
, array
, base >=4.12 && < 4.20
, bcrypt
, binary
, bitvec
, bytes
, bytestring
, containers
, crypton
, crypton-x509-system
, data-default
, deepseq
, directory
, exceptions
, extra
, filepath
, hashable
, hedis
, http-types
, indexed-traversable
, lens
, lrucache
, mtl
, monad-loops
, optparse-applicative
, process
, random
, safe
, servant
, servant-multipart
, servant-server
, stm
, temporary
, text
, tls
, time
, toml-parser
, transformers
, unordered-containers
, uuid
, vector
, wai
, wai-cors
, wai-extra
, warp
library
import: warnings, deps
exposed-modules:
Incredible.AntiEvil
Incredible.API
Incredible.App
Incredible.Config
Incredible.Data
Incredible.DataStore
Incredible.DataStore.Memory
Incredible.DataStore.Redis
Incredible.Puzzle
hs-source-dirs: src
executable incredible-server
import: warnings, deps
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: incredible
hs-source-dirs: app
ghc-options: -threaded -rtsopts -with-rtsopts=-N
executable incredible-docs
import: warnings, deps
main-is: Main.hs
hs-source-dirs: docs
build-depends: incredible
, servant-openapi3
, openapi3
, insert-ordered-containers
executable incredible-gen
import: warnings, deps
main-is: Main.hs
-- other-modules:
-- other-extensions:
hs-source-dirs: Gen
default-language: Haskell2010
ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
build-depends: incredible
test-suite incredible-test
import: warnings, deps
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends:
incredible
, async
, hedgehog
, tasty
, tasty-hedgehog
, uuid-types