-
Notifications
You must be signed in to change notification settings - Fork 0
/
wumpus.cabal
49 lines (44 loc) · 1.09 KB
/
wumpus.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: wumpus
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/egnwd/wumpus#readme
license: BSD3
license-file: LICENSE
author: Elliot Greenwood
maintainer: elliot@fundapps.co
copyright: Elliot Greenwood
category: example
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
library
exposed-modules:
Wumpus
other-modules:
Wumpus.Data
Wumpus.Messages
Wumpus.Movement
Wumpus.Utils
ghc-options: -Wall -Wno-missing-signatures -Wredundant-constraints
hs-source-dirs: src
default-language: Haskell2010
build-depends:
array >= 0.5.4,
base >= 4.8 && < 5,
composition-extra >= 2.0,
cond >= 0.4.1,
control-bool >= 0.2,
containers >= 0.6.2,
ghc >= 8.8.4,
lens >= 4.19.2,
MonadRandom >= 0.5.2,
mtl >= 2.2.2,
utility-ht >= 0.0.15
executable wumpus
hs-source-dirs: exe
main-is: Main.hs
default-language: Haskell2010
build-depends:
base >= 4.8 && < 5,
wumpus