-
Notifications
You must be signed in to change notification settings - Fork 2
/
planning-game.cabal
61 lines (59 loc) · 2.15 KB
/
planning-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
-- Initial planning-game.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: planning-game
version: 0.3.1
-- synopsis:
-- description:
license: AGPL-3
license-file: LICENSE
author: Marek Fajkus
maintainer: marek.faj@gmail.com
-- copyright:
category: Web
build-type: Simple
extra-source-files: CHANGELOG.md
cabal-version: >=1.10
executable planning-game
main-is: PlanningGame.hs
other-modules: PlanningGame.Api
, PlanningGame.Api.Authorization
, PlanningGame.Api.Error
, PlanningGame.Api.Middleware
, PlanningGame.Api.PlayerInfo
, PlanningGame.Api.GameSnapshot
, PlanningGame.Data
, PlanningGame.Data.AutoIncrement
, PlanningGame.Data.Id
, PlanningGame.Data.Player
, PlanningGame.Data.Session
, PlanningGame.Data.Table
, PlanningGame.Data.Table.Stream
, PlanningGame.Data.Game
, PlanningGame.GarbageCollector
, PlanningGame.State
, Paths_planning_game
hs-source-dirs: server
-- other-extensions:
build-depends: base >= 4 && < 5
, servant
, servant-server
, wai
, wai-extra
, warp
, text
, aeson
, containers
, random
, bytestring
, websockets
, servant-websockets
, wai-middleware-static
, http-types
, cookie
, mtl
, time
, blaze-html
, blaze-markup
-- hs-source-dirs:
default-language: Haskell2010
ghc-options: -Wcompat "-with-rtsopts=-T -I1" -Wall