name: labyrinth-server version: 0.1.1.0 synopsis: A complicated turn-based game - Web server description: Players take turns in a labyrinth, competing with each other to pick a treasure and carry it out. They only know everyone's moves and responses, but do not see the map and must deduce it themselves. This package contains a Web server to play the game. homepage: https://github.com/koterpillar/labyrinth-server license: MIT license-file: LICENSE author: Alexey Kotlyarov maintainer: a@koterpillar.com category: Game build-type: Simple cabal-version: >=1.8 source-repository head type: git location: git://github.com/koterpillar/labyrinth-server.git executable labyrinth-server main-is: LabyrinthServer.hs other-modules: LabyrinthServer.Data build-depends: base >= 4.5 && < 4.7 , labyrinth >= 0.4.2.0 && < 0.5 , mtl ==2.1.* , template-haskell >= 2.7 && < 2.9 , lens ==3.9.* , filepath ==1.3.* , derive ==2.5.* , safecopy ==0.8.* , containers >= 0.4 && < 0.6 , random ==1.0.* , text ==0.11.* , transformers ==0.3.* , vector ==0.10.* , acid-state ==0.12.* , yesod ==1.2.* , yesod-static ==1.2.* , websockets ==0.7.* , wai-websockets ==1.3.* , warp ==1.3.* , utf8-string ==0.3.* , aeson ==0.6.* , shakespeare-css ==1.0.* , shakespeare-js ==1.1.* , hamlet ==1.1.* hs-source-dirs: src