Eta-reduction for randomRange.
[avoidance.git] / package.yaml
1 name:                avoidance
2 version:             0.1.0.0
3 github:              "githubuser/avoidance"
4 license:             BSD3
5 author:              "Author name here"
6 maintainer:          "example@example.com"
7 copyright:           "2021 Author name here"
8
9 extra-source-files:
10 - README.md
11 - ChangeLog.md
12
13 # Metadata used when publishing your package
14 # synopsis:            Short description of your package
15 # category:            Web
16
17 # To avoid duplicated efforts in documentation and dealing with the
18 # complications of embedding Haddock markup inside cabal files, it is
19 # common to point users to the README.md file.
20 description:         Please see the README on GitHub at <https://github.com/githubuser/avoidance#readme>
21
22 dependencies:
23 - ansi-terminal-game == 1.0.0.0
24 - base >= 4.7 && < 5
25 - mtl == 2.2.2
26 - random == 1.1
27
28 library:
29   source-dirs: src
30
31 executables:
32   avoidance:
33     main:                Main.hs
34     source-dirs:         app
35     ghc-options:
36     - -threaded
37     - -rtsopts
38     - -with-rtsopts=-N
39     dependencies:
40     - avoidance
41
42 tests:
43   avoidance-test:
44     main:                Spec.hs
45     source-dirs:         test
46     ghc-options:
47     - -threaded
48     - -rtsopts
49     - -with-rtsopts=-N
50     dependencies:
51     - avoidance