Added dependency on ansi-terminal-game.
[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: a487f145932021e6d83c8b3989b615bddbb0c6e27ff93006bc87b13e7840fbcd
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   default-language: Haskell2010
39
40 executable avoidance
41   main-is: Main.hs
42   other-modules:
43       Paths_avoidance
44   hs-source-dirs:
45       app
46   ghc-options: -threaded -rtsopts -with-rtsopts=-N
47   build-depends:
48       ansi-terminal-game ==1.0.0.0
49     , avoidance
50     , base >=4.7 && <5
51   default-language: Haskell2010
52
53 test-suite avoidance-test
54   type: exitcode-stdio-1.0
55   main-is: Spec.hs
56   other-modules:
57       Paths_avoidance
58   hs-source-dirs:
59       test
60   ghc-options: -threaded -rtsopts -with-rtsopts=-N
61   build-depends:
62       ansi-terminal-game ==1.0.0.0
63     , avoidance
64     , base >=4.7 && <5
65   default-language: Haskell2010