server/hanafuda-webapp.cabal

51 lines
1.6 KiB
Plaintext
Raw Normal View History

2018-04-11 13:25:24 +02:00
-- Initial hanafudapi.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: hanafuda-webapp
version: 0.2.3.0
synopsis: A webapp for the Haskell hanafuda library
2018-04-11 13:25:24 +02:00
-- description:
homepage: https://git.marvid.fr/hanafuda
2018-04-11 13:25:24 +02:00
license: BSD3
license-file: LICENSE
author: Tissevert
maintainer: tissevert+devel@marvid.fr
2018-04-11 13:25:24 +02:00
-- copyright:
category: Web
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
source-repository head
type: git
location: https://git.marvid.fr/hanafuda/webapp
2018-04-11 13:25:24 +02:00
executable hanafudapi
main-is: Main.hs
other-modules: App
, Automaton
, Config
, Messaging
2018-04-11 13:25:24 +02:00
, Game
, Data
, Server
, Session
-- other-extensions:
build-depends: base >=4.9 && <4.13
2018-04-11 13:25:24 +02:00
, bytestring
, containers >= 0.5.9
, unordered-containers
, hanafuda >= 0.3.3
, hanafuda-APILanguage >= 0.1.0
2018-04-11 13:25:24 +02:00
, http-types
, aeson
, mtl
, text
, vector
, wai
, wai-websockets
, warp
, websockets
ghc-options: -Wall -fno-warn-orphans
hs-source-dirs: src
default-language: Haskell2010