server/hanafudapi.cabal

49 lines
1.5 KiB
Plaintext

-- Initial hanafudapi.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: hanafudapi
version: 0.1.0.0
synopsis: An API for the Haskell hanafuda library
-- description:
homepage: https://framagit.org/hanafuda
license: BSD3
license-file: LICENSE
author: Sasha
maintainer: sasha+frama@marvid.fr
-- copyright:
category: Web
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
source-repository head
type: git
location: https://framagit.org/hanafuda/api
executable hanafudapi
main-is: Main.hs
other-modules: Config
, Message
, Game
, JSON
, Data
, Player
, Server
, Session
-- other-extensions:
build-depends: base >=4.10 && <4.11
, bytestring
, containers
, hanafuda
, http-types
, aeson
, mtl
, text
, vector
, wai
, wai-websockets
, warp
, websockets
ghc-options: -Wall -fno-warn-orphans
hs-source-dirs: src
default-language: Haskell2010