-
Notifications
You must be signed in to change notification settings - Fork 0
/
poker-game.cabal
101 lines (98 loc) · 2.85 KB
/
poker-game.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
cabal-version: 1.12
-- Initial package description 'poker-game.cabal' generated by 'cabal
-- init'. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: poker-game
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
-- license:
-- license-file: LICENSE
author: Santi Weight
maintainer: santiagoweight@forwardnetworks.com
-- copyright:
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md
library
exposed-modules:
Poker.Game.Emulate
Poker.Game.AvailableActions
Poker.Game.Bovada
Poker.Game.Types
Poker.Game.Normalise
Poker.Game.Utils
build-depends:
base
, containers
, lens
, mtl
, poker-base
, poker-histories
, prettyprinter
, text
hs-source-dirs: src
-- ghc-options: -j8 +RTS -A128m -n2m -RTS -Wall -Wno-unticked-promoted-constructors
default-language: Haskell2010
default-extensions: ConstraintKinds
DataKinds
DeriveDataTypeable
DeriveFunctor
DeriveGeneric
DeriveTraversable
EmptyCase
FlexibleContexts
GADTs
LambdaCase
LiberalTypeSynonyms
PartialTypeSignatures
PatternSynonyms
PackageImports
PolyKinds
RankNTypes
ScopedTypeVariables
StandaloneDeriving
TypeApplications
TypeOperators
TypeFamilies
UnicodeSyntax
TemplateHaskell
test-suite all-tests
type: exitcode-stdio-1.0
main-is: Driver.hs
other-modules:
Test.Poker.Game.Emulate
Test.Poker.Game.PokerStars.Emulate
Paths_poker_game
hs-source-dirs:
test
default-extensions: ConstraintKinds DataKinds DeriveDataTypeable DeriveFunctor DeriveGeneric DeriveTraversable EmptyCase FlexibleContexts GADTs LambdaCase LiberalTypeSynonyms PartialTypeSignatures PatternSynonyms PackageImports PolyKinds RankNTypes ScopedTypeVariables StandaloneDeriving TypeApplications TypeOperators TypeFamilies UnicodeSyntax ViewPatterns TemplateHaskell
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -Wno-unticked-promoted-constructors
build-depends:
base
, bytestring
, containers
, directory
, extra
, filepath
, hspec
, megaparsec
, lens
, mtl
, base
, poker-base
, poker-histories
, poker-game
, pretty-show
, prettyprinter
, regex-base
, regex-posix
, safe-money
, tasty
, tasty-discover
, tasty-hspec
, tasty-hunit
, text
, time
default-language: Haskell2010