-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.yaml
132 lines (108 loc) · 2.35 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
name: tophat
version: 0.3.0.0
#synopsis:
description: Please see the README on GitHub at <https://github.com/timjs/tophat-haskell#readme>
github: "timjs/tophat-haskell"
license: BSD3
author: Tim Steenvoorden
maintainer: [email protected]
copyright: BSD3
# category: Web
extra-source-files:
- README.md
dependencies:
- name: base
mixin:
- hiding (Prelude)
- relude >= 1.2 && < 2
- witherable >= 0.4 && < 1
- polysemy >= 1.5.0 && < 2
- polysemy-plugin
- lens-family-core
- aeson
default-extensions:
# Lifting limitations:
- EmptyDataDecls
- EmptyCase
- FlexibleContexts
- FlexibleInstances
- InstanceSigs
- MultiParamTypeClasses
# Syntactic conveniences:
- LambdaCase
- MultiWayIf
- NamedFieldPuns
- TupleSections
- NumericUnderscores
# Deriving:
- DeriveGeneric
- DeriveFunctor
- DeriveFoldable
- DeriveTraversable
# - GeneralizedNewtypeDeriving
- DerivingVia
- StandaloneDeriving
# Syntactic adjustments:
- BangPatterns
- KindSignatures
- TypeOperators
- MonadComprehensions
- BinaryLiterals
- NegativeLiterals
- NoStarIsType
- BlockArguments
# Type annotations:
- ScopedTypeVariables
- TypeApplications
- PartialTypeSignatures
- NamedWildCards
# Prelude and overloading:
# - NoImplicitPrelude
# - PackageImports
- OverloadedStrings
- OverloadedLists
# Type extensions:
- ConstraintKinds
- RankNTypes
# Intermediate syntactic adjustments:
- DefaultSignatures
- PatternSynonyms
- PatternGuards
# - ApplicativeDo
# Intermediate type extensions:
- FunctionalDependencies
- UndecidableInstances
- GADTs
- ExistentialQuantification
# Advanced type extensions:
- DataKinds
- PolyKinds
- TypeFamilies
- TypeFamilyDependencies
- QuantifiedConstraints
# Semantic extensions
- StrictData
ghc-options:
- -Wall
- -Wcompat
- -Widentities
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wpartial-fields
- -Wredundant-constraints
# For Polysemy:
- -O2
- -flate-specialise
- -fspecialise-aggressively
- -fplugin=Polysemy.Plugin
library:
source-dirs: src
executable:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- tophat