This repository has been archived by the owner on Aug 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
116 lines (109 loc) · 2.16 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
name: Nuko
version: 0.1.0.0
github: "felipegchi/Nuko"
license: BSD3
author: "Felipe G"
maintainer: "[email protected]"
copyright: "2022 Felipe G"
description: <https://github.com/githubuser/Nuko#readme>
dependencies:
- base >= 4.16.0.0
- relude ^>= 1.1.0.0
- aeson
default-extensions:
- DuplicateRecordFields
- OverloadedRecordDot
- OverloadedStrings
- StandaloneDeriving
- GeneralizedNewtypeDeriving
- DerivingStrategies
- FlexibleInstances
- LambdaCase
- TypeFamilies
- NoImplicitPrelude
- FlexibleContexts
- OverloadedStrings
- DataKinds
- UndecidableInstances
- FunctionalDependencies
- ConstraintKinds
- TemplateHaskell
- RankNTypes
- DeriveGeneric
- TupleSections
- TypeOperators
- AllowAmbiguousTypes
- DefaultSignatures
- UndecidableInstances
- GADTs
- ImpredicativeTypes
- StrictData
- DeriveFunctor
- PatternSynonyms
- ScopedTypeVariables
- ImportQualifiedPost
ghc-options:
- -Weverything
- -Wno-all-missed-specializations
- -Wno-implicit-prelude
- -Wno-missing-deriving-strategies
- -Wno-missing-kind-signatures
- -Wno-prepositive-qualified-module
- -Wno-missing-import-lists
- -Wno-missing-safe-haskell-mode
- -Wno-safe
- -Wno-missing-exported-signatures
- -Wno-unsafe
- -Wno-missed-specialisations
library:
source-dirs: src
ghc-options:
- -Wall
dependencies:
- mtl
- bytestring
- array
- monad-chronicle
- these
- microlens-platform
- containers
- unordered-containers
- hashable
- text
- pretty-terminal
executables:
Nuko-Cli-exe:
main: Main.hs
source-dirs: cli
ghc-options:
- -Wall
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- Nuko
- bytestring
- these
tests:
Nuko-test:
main: Spec.hs
source-dirs: tests
ghc-options:
- -Wall
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- Nuko
- filepath
- tasty
- tasty-golden
- bytestring
- text
- these
- pretty-simple
- monad-chronicle
- mtl
default-extensions:
- NoImplicitPrelude
- OverloadedStrings