-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
74 lines (68 loc) · 1.43 KB
/
package.yaml
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: envelopes
version: 1.0.0.0
author: Author name here
maintainer: example@example.com
copyright: "MIT"
dependencies:
- base
- optparse-applicative == 0.17.0.0
- containers == 0.6.5.1
- hashable == 1.3.5.0
- text == 1.2.5.0
- aeson == 2.0.3.0
- bytestring == 0.11.3.1
- scientific == 0.3.7.0
- unordered-containers == 0.2.19.1
- yaml == 0.11.8.0
- microlens-platform == 0.4.3.3
- microlens == 0.4.13.1
- QuickCheck == 2.14.2
- HUnit == 1.6.2.0
- hspec == 2.9.7
ghc-options:
- -Wall
- -Wcompat
- -Widentities
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wmissing-export-lists
- -Wmissing-home-modules
- -Wpartial-fields
- -Wredundant-constraints
default-extensions:
- ConstraintKinds
- DeriveGeneric
- DerivingStrategies
- GeneralizedNewtypeDeriving
- InstanceSigs
- KindSignatures
- LambdaCase
- OverloadedStrings
- RecordWildCards
- ScopedTypeVariables
- StandaloneDeriving
- TupleSections
- TypeApplications
- ViewPatterns
library:
source-dirs: src
executables:
envelopes:
main: Main.hs
source-dirs: app/envelopes
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- envelopes
tests:
envelopes-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- envelopes