51 lines
1.6 KiB
Text
51 lines
1.6 KiB
Text
-- Initial hanafudapi.cabal generated by cabal init. For further
|
|
-- documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
name: hanafuda-webapp
|
|
version: 0.2.1.0
|
|
synopsis: A webapp 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: App
|
|
, Automaton
|
|
, Config
|
|
, Message
|
|
, Game
|
|
, JSON
|
|
, Data
|
|
, Player
|
|
, Server
|
|
, Session
|
|
-- other-extensions:
|
|
build-depends: base >=4.10 && <4.12
|
|
, bytestring
|
|
, containers
|
|
, unordered-containers
|
|
, hanafuda >= 0.3.0
|
|
, http-types
|
|
, aeson
|
|
, mtl
|
|
, text
|
|
, vector
|
|
, wai
|
|
, wai-websockets
|
|
, warp
|
|
, websockets
|
|
ghc-options: -Wall -fno-warn-orphans
|
|
hs-source-dirs: src
|
|
default-language: Haskell2010
|