41 lines
1.5 KiB
Plaintext
41 lines
1.5 KiB
Plaintext
name: waterdeep
|
|
version: 0.1.0.0
|
|
synopsis: Simulation of the "Lords of Waterdeep" board game by WotC
|
|
-- description:
|
|
license: PublicDomain
|
|
license-file: LICENSE
|
|
author: Jesse McDonald
|
|
maintainer: nybble41@gmail.com
|
|
-- copyright:
|
|
category: Game
|
|
build-type: Simple
|
|
-- extra-source-files:
|
|
cabal-version: >=1.10
|
|
|
|
executable waterdeep
|
|
main-is: ConsoleUI.hs
|
|
-- other-modules:
|
|
other-extensions: FlexibleContexts,
|
|
FlexibleInstances,
|
|
GADTs,
|
|
LambdaCase,
|
|
MultiParamTypeClasses,
|
|
MultiWayIf,
|
|
NoMonomorphismRestriction,
|
|
RankNTypes,
|
|
TemplateHaskell,
|
|
TupleSections
|
|
build-depends: base >=4.6 && <4.7,
|
|
MonadPrompt >=1.0 && <1.1,
|
|
MonadRandom >=0.1 && <0.2,
|
|
containers >=0.5 && <0.6,
|
|
lens-family >=1.0 && <1.1,
|
|
lens-family-th >=0.3 && <0.4,
|
|
mtl >=2.1 && <2.2,
|
|
multiset >=0.2 && <0.3,
|
|
random >=1.0 && <1.1,
|
|
random-shuffle >=0.0 && <0.1,
|
|
transformers >=0.3 && <0.4
|
|
hs-source-dirs: src
|
|
default-language: Haskell2010
|