summaryrefslogtreecommitdiff
path: root/Haskell-book/23/RandomExample/package.yaml
blob: 9fe2ffec578c1e7415ec13e93a4a079af133903c (plain)
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
name:                RandomExample
version:             0.1.0.0
maintainer:          "belka@caraus.de"
copyright:           "2018 Eugene Wissner"

dependencies:
- base >= 4.7 && < 5
- random
- transformers

library:
  source-dirs: src

executables:
  RandomExample-exe:
    main:                Main.hs
    source-dirs:         app
    ghc-options:
    - -threaded
    - -rtsopts
    - -with-rtsopts=-N
    dependencies:
    - RandomExample

tests:
  RandomExample-test:
    main:                Spec.hs
    source-dirs:         test
    ghc-options:
    - -threaded
    - -rtsopts
    - -with-rtsopts=-N
    dependencies:
    - RandomExample