-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.yaml
161 lines (154 loc) · 3.69 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
name: p4haskell
version: 0.0.0
github: "nitros12/p4haskell"
homepage: https://github.com/nitros12/p4haskell
bug-reports: https://github.com/nitros12/p4haskell/issues
license: MIT
license-file: LICENSE
author: "Ben Simms"
maintainer: "[email protected]"
copyright: 2019 Ben Simms
category: Parsing Development Compilers/Interpreters Utility
build-type: Simple
extra-doc-files:
- README.md
- CHANGELOG.md
tested-with: GHC == 8.8.2
synopsis: P4 backend in haskell
description: P4 backend in haskell
dependencies:
- name: base
version: ">= 4.12 && < 5"
# mixin:
# - hiding (Prelude)
- name: relude
version: "^>= 0.7"
# add back when stack/5077 is ok
# mixin:
# - (Relude as Prelude, Relude, Relude.Debug, Relude.Extra.Map, Relude.Extra, Relude.Unsafe)
- waargonaut ^>= 0.8.0.2
- lens >= 4.18 && < 4.20
- generic-lens ^>= 2
# - generic-monoid ^>= 0.1
- unordered-containers ^>= 0.2
- ordered-containers ^>= 0.2
# - di-polysemy ^>= 0.2
# - di ^>= 1.3
# - df1 >= 0.3 && < 0.5
- polysemy ^>= 1.4
- polysemy-zoo ^>= 0.7
- polysemy-plugin ^>= 0.2
- text ^>= 1.2
- pretty
- pretty-simple ^>= 4.0
- bytestring ^>= 0.10
- attoparsec ^>= 0.13
- dependent-sum-template ^>= 0.1
- hashable ^>= 1.3
- some ^>= 1.0
- rock ^>= 0.3
- generics-sop ^>= 0.5
# - PyF
- mtl
# - semigroupoids
- language-c99 ^>= 0.1
- language-c99-simple ^>= 0.1
- extra ^>= 1.7
- bitvec ^>= 1.0
- vector ^>= 0.12
executables:
p4haskell:
main: Main.hs
source-dirs: app
ghc-options:
- -fplugin=Polysemy.Plugin
- -O2
- -fexpose-all-unfoldings
- -fspecialise-aggressively
- -Wall
- -Wincomplete-uni-patterns
- -Wincomplete-record-updates
- -Wcompat
- -Widentities
- -Wredundant-constraints
- -fhide-source-paths
- -Wmissing-export-lists
- -Wmissing-deriving-strategies
- -Wpartial-fields
- -Wunused-packages
- -haddock
dependencies:
- p4haskell
- optparse-applicative
library:
ghc-options:
- -fplugin=Polysemy.Plugin
- -O2
- -fexpose-all-unfoldings
- -fspecialise-aggressively
- -Wall
- -Wincomplete-uni-patterns
- -Wincomplete-record-updates
- -Wcompat
- -Widentities
- -Wredundant-constraints
- -fhide-source-paths
- -Wmissing-export-lists
- -Wmissing-deriving-strategies
- -Wpartial-fields
- -Wunused-packages
- -haddock
source-dirs: src
default-extensions:
- StrictData
- NoImplicitPrelude # remove when stack/5077 is ok
- IncoherentInstances
# - TemplateHaskell
- RecursiveDo
- AllowAmbiguousTypes
- BlockArguments
- NoMonomorphismRestriction
- BangPatterns
- BinaryLiterals
- UndecidableInstances
- ConstraintKinds
- DataKinds
- DefaultSignatures
- DeriveDataTypeable
- DeriveFoldable
- DeriveFunctor
- DeriveGeneric
- DeriveTraversable
- DoAndIfThenElse
- EmptyDataDecls
- ExistentialQuantification
- FlexibleContexts
- FlexibleInstances
- FunctionalDependencies
- GADTs
- DerivingVia
- StandaloneDeriving
- DeriveAnyClass
- InstanceSigs
- KindSignatures
- LambdaCase
- MultiParamTypeClasses
- MultiWayIf
- NamedFieldPuns
- OverloadedStrings
- OverloadedLabels
- PartialTypeSignatures
- PatternGuards
- PolyKinds
- RankNTypes
- RecordWildCards
- ScopedTypeVariables
- TupleSections
- TypeFamilies
- TypeSynonymInstances
- ViewPatterns
- DuplicateRecordFields
- TypeOperators
- TypeApplications
- RoleAnnotations
- PatternSynonyms