2018-11-08 18:36:25 +01:00
|
|
|
-- Initial hannah.cabal generated by cabal init. For further
|
|
|
|
-- documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
|
|
|
|
name: hannah
|
|
|
|
version: 0.1.0.0
|
|
|
|
synopsis: A bot to play koikoi
|
|
|
|
-- description:
|
|
|
|
homepage: https://git.marvid.fr/hanafuda
|
|
|
|
license: BSD3
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Tissevert
|
|
|
|
maintainer: tissevert+devel@marvid.fr
|
|
|
|
-- copyright:
|
|
|
|
category: Game
|
|
|
|
build-type: Simple
|
|
|
|
extra-source-files: ChangeLog.md
|
|
|
|
cabal-version: >=1.10
|
|
|
|
|
|
|
|
executable hannah
|
|
|
|
main-is: Main.hs
|
2019-08-18 22:11:57 +02:00
|
|
|
other-modules: AI
|
|
|
|
, Automaton
|
2018-11-19 23:26:32 +01:00
|
|
|
, Config
|
2019-11-20 18:30:59 +01:00
|
|
|
, Session
|
2018-11-08 18:36:25 +01:00
|
|
|
-- other-extensions:
|
2019-08-18 22:11:57 +02:00
|
|
|
build-depends: aeson
|
|
|
|
, base >=4.9 && <4.13
|
2018-11-08 18:36:25 +01:00
|
|
|
, bytestring
|
|
|
|
, containers
|
2019-11-20 18:30:59 +01:00
|
|
|
, directory
|
|
|
|
, filepath
|
2019-08-18 22:11:57 +02:00
|
|
|
, hanafuda
|
2020-01-10 08:32:56 +01:00
|
|
|
, hanafuda-protocol
|
2018-11-08 18:36:25 +01:00
|
|
|
, mtl
|
2019-08-19 18:48:11 +02:00
|
|
|
, text
|
2018-11-08 18:36:25 +01:00
|
|
|
, websockets
|
|
|
|
hs-source-dirs: src
|
2019-11-20 18:30:59 +01:00
|
|
|
ghc-options: -Wall
|
2018-11-08 18:36:25 +01:00
|
|
|
default-language: Haskell2010
|