Added random enemies.
[avoidance.git] / avoidance.cabal
1 cabal-version: 1.12
2
3 -- This file has been generated from package.yaml by hpack version 0.33.0.
4 --
5 -- see: https://github.com/sol/hpack
6 --
7 -- hash: 87a537766b62d585df8459c87acf35954734419e1001087d8ee7a31a18ef7b8e
8
9 name:           avoidance
10 version:        0.1.0.0
11 description:    Please see the README on GitHub at <https://github.com/githubuser/avoidance#readme>
12 homepage:       https://github.com/githubuser/avoidance#readme
13 bug-reports:    https://github.com/githubuser/avoidance/issues
14 author:         Author name here
15 maintainer:     example@example.com
16 copyright:      2021 Author name here
17 license:        BSD3
18 license-file:   LICENSE
19 build-type:     Simple
20 extra-source-files:
21     README.md
22     ChangeLog.md
23
24 source-repository head
25   type: git
26   location: https://github.com/githubuser/avoidance
27
28 library
29   exposed-modules:
30       Game
31   other-modules:
32       Paths_avoidance
33   hs-source-dirs:
34       src
35   build-depends:
36       ansi-terminal-game ==1.0.0.0
37     , base >=4.7 && <5
38     , random ==1.1
39   default-language: Haskell2010
40
41 executable avoidance
42   main-is: Main.hs
43   other-modules:
44       Paths_avoidance
45   hs-source-dirs:
46       app
47   ghc-options: -threaded -rtsopts -with-rtsopts=-N
48   build-depends:
49       ansi-terminal-game ==1.0.0.0
50     , avoidance
51     , base >=4.7 && <5
52     , random ==1.1
53   default-language: Haskell2010
54
55 test-suite avoidance-test
56   type: exitcode-stdio-1.0
57   main-is: Spec.hs
58   other-modules:
59       Paths_avoidance
60   hs-source-dirs:
61       test
62   ghc-options: -threaded -rtsopts -with-rtsopts=-N
63   build-depends:
64       ansi-terminal-game ==1.0.0.0
65     , avoidance
66     , base >=4.7 && <5
67     , random ==1.1
68   default-language: Haskell2010