This repository has been archived by the owner on Dec 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrep-gen.cabal
129 lines (125 loc) · 4.65 KB
/
rep-gen.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
124
125
126
127
128
129
cabal-version: 2.4
name: rep-gen
version: 0.1.0.0
license-file: LICENSE
author: Cameron Kingsbury
maintainer: camsbury7@gmail.com
extra-source-files: CHANGELOG.md
library
hs-source-dirs: src
default-language: Haskell2010
exposed-modules: Prelude
, RepGen
other-modules: RepGen.Action
, RepGen.Action.CalcStats
, RepGen.Action.EnumCands
, RepGen.Action.EnumResps
, RepGen.Action.PruneCands
, RepGen.Action.PruneHooks
, RepGen.Action.TransStats
, RepGen.Action.Type
, RepGen.Config
, RepGen.Config.Type
, RepGen.Engine
, RepGen.Engine.Local
, RepGen.Engine.Type
, RepGen.Export
, RepGen.Lichess
, RepGen.Lichess.History
, RepGen.Lichess.History.Type
, RepGen.Monad
, RepGen.MoveTree
, RepGen.MoveTree.Type
, RepGen.PyChess
, RepGen.PyChess.Type
, RepGen.Score
, RepGen.Score.Type
, RepGen.State
, RepGen.State.Type
, RepGen.Stats
, RepGen.Stats.Type
, RepGen.Strategy
, RepGen.Strategy.Type
, RepGen.Type
, Web
default-extensions: DerivingStrategies
FlexibleContexts
FlexibleInstances
GeneralizedNewtypeDeriving
OverloadedLists
OverloadedStrings
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TupleSections
MultiParamTypeClasses
FunctionalDependencies
build-depends: base
, aeson
, bytestring
, classy-prelude
, command
, data-default
, http-client
, http-client-tls
, http-types
, lens
, monad-logger
, mtl
, persistent
, persistent-sqlite
, pretty-simple
, regex
, regex-pcre
, regex-compat
, uuid
, text
, time
, vector
pkgconfig-depends: python3
c-sources: src/chess.c
ghc-options: -Wall
mixins: base hiding (Prelude)
test-suite rep-gen-tests
main-is: Main.hs
other-modules: RepGenTest
type: exitcode-stdio-1.0
hs-source-dirs: test
default-language: Haskell2010
default-extensions: DerivingStrategies
FlexibleContexts
FlexibleInstances
FunctionalDependencies
GeneralizedNewtypeDeriving
OverloadedStrings
OverloadedLists
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TypeApplications
TupleSections
build-depends: base
, classy-prelude
, rep-gen
, hedgehog
, lens
, mtl
, tasty
, tasty-discover
, tasty-hedgehog
executable rep-gen
main-is: Main.hs
hs-source-dirs: app
default-extensions: OverloadedLists
OverloadedStrings
build-depends: base
, aeson
, rep-gen
, data-default
, lens
, optparse-applicative
, pretty-simple
default-language: Haskell2010
pkgconfig-depends: python3
c-sources: src/chess.c
mixins: base hiding (Prelude)