-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRogueMonad.cabal
29 lines (28 loc) · 1.01 KB
/
RogueMonad.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name : RogueMonad
version : 0.1.0.0
synopsis : A basic roguelike, exploratory programming.
homepage : https://github.com/spaceships/RogueMonad
license : GPL-2
license-file : LICENSE
author : Brent Carmer
maintainer : bcarmer@gmail.com
category : Game
build-type : Simple
extra-source-files : README.md
cabal-version : >=1.18
executable rogue-monad
GHC-Options: -O2
main-is : Main.hs
other-modules : Rogue.Interface, Rogue.Types, Rogue.Actions, Rogue.World
build-depends : base >=4.6
, transformers >=0.3.0
, text >=0.11.3.1
, containers >=0.5.0.0
, array >=0.4.0.1
, ansi-terminal >=0.6
, random >=1.0
, monad-loops >=0.4
, lens >=3.9.2
, vty >=4.7.3
hs-source-dirs : src
default-language : Haskell2010