@@ -25,6 +25,7 @@ source-repository head
2525library
2626 hs-source-dirs :
2727 src
28+ default-extensions : BangPatterns ConstrainedClassMethods DeriveDataTypeable DeriveFoldable DeriveFunctor DeriveTraversable ExistentialQuantification ExplicitForAll FlexibleContexts FlexibleInstances GeneralizedNewtypeDeriving KindSignatures MultiParamTypeClasses NamedFieldPuns PostfixOperators RankNTypes ScopedTypeVariables StandaloneDeriving TupleSections TypeOperators TypeSynonymInstances DeriveAnyClass DerivingStrategies LambdaCase OverloadedStrings RecordWildCards ViewPatterns DefaultSignatures
2829 ghc-options : -Wall
2930 build-depends :
3031 Cabal >= 3.0.0.0 && < 3.6
@@ -49,6 +50,24 @@ library
4950 , unordered-containers
5051 , vector
5152 , yaml >= 0.10.0
53+ if impl(ghc >= 8.10 )
54+ default-extensions : ImportQualifiedPost StandaloneKindSignatures
55+ if impl(ghc >= 8.6 )
56+ default-extensions : NumericUnderscores
57+ if impl(ghc >= 8.4 )
58+ default-extensions : EmptyDataDeriving HexFloatLiterals
59+ if impl(ghc >= 8.0 )
60+ default-extensions : DeriveLift TypeApplications
61+ if impl(ghc >= 7.10 )
62+ default-extensions : BinaryLiterals NamedWildCards
63+ if impl(ghc >= 7.8 )
64+ default-extensions : EmptyCase
65+ if impl(ghc >= 7.6 )
66+ default-extensions : InstanceSigs
67+ if impl(ghc >= 7.4 )
68+ default-extensions : ConstraintKinds PolyKinds
69+ if impl(ghc >= 7.2 )
70+ default-extensions : DeriveGeneric GADTSyntax
5271 exposed-modules :
5372 Hpack
5473 Hpack.Config
@@ -83,6 +102,7 @@ executable hpack
83102 main-is : Main.hs
84103 hs-source-dirs :
85104 driver
105+ default-extensions : BangPatterns ConstrainedClassMethods DeriveDataTypeable DeriveFoldable DeriveFunctor DeriveTraversable ExistentialQuantification ExplicitForAll FlexibleContexts FlexibleInstances GeneralizedNewtypeDeriving KindSignatures MultiParamTypeClasses NamedFieldPuns PostfixOperators RankNTypes ScopedTypeVariables StandaloneDeriving TupleSections TypeOperators TypeSynonymInstances DeriveAnyClass DerivingStrategies LambdaCase OverloadedStrings RecordWildCards ViewPatterns DefaultSignatures
86106 ghc-options : -Wall
87107 build-depends :
88108 Cabal >= 3.0.0.0 && < 3.6
@@ -108,6 +128,24 @@ executable hpack
108128 , unordered-containers
109129 , vector
110130 , yaml >= 0.10.0
131+ if impl(ghc >= 8.10 )
132+ default-extensions : ImportQualifiedPost StandaloneKindSignatures
133+ if impl(ghc >= 8.6 )
134+ default-extensions : NumericUnderscores
135+ if impl(ghc >= 8.4 )
136+ default-extensions : EmptyDataDeriving HexFloatLiterals
137+ if impl(ghc >= 8.0 )
138+ default-extensions : DeriveLift TypeApplications
139+ if impl(ghc >= 7.10 )
140+ default-extensions : BinaryLiterals NamedWildCards
141+ if impl(ghc >= 7.8 )
142+ default-extensions : EmptyCase
143+ if impl(ghc >= 7.6 )
144+ default-extensions : InstanceSigs
145+ if impl(ghc >= 7.4 )
146+ default-extensions : ConstraintKinds PolyKinds
147+ if impl(ghc >= 7.2 )
148+ default-extensions : DeriveGeneric GADTSyntax
111149 other-modules :
112150 Paths_hpack
113151 default-language : Haskell2010
@@ -118,6 +156,7 @@ test-suite spec
118156 hs-source-dirs :
119157 test
120158 src
159+ default-extensions : BangPatterns ConstrainedClassMethods DeriveDataTypeable DeriveFoldable DeriveFunctor DeriveTraversable ExistentialQuantification ExplicitForAll FlexibleContexts FlexibleInstances GeneralizedNewtypeDeriving KindSignatures MultiParamTypeClasses NamedFieldPuns PostfixOperators RankNTypes ScopedTypeVariables StandaloneDeriving TupleSections TypeOperators TypeSynonymInstances DeriveAnyClass DerivingStrategies LambdaCase OverloadedStrings RecordWildCards ViewPatterns DefaultSignatures QuasiQuotes
121160 ghc-options : -Wall
122161 cpp-options : -DTEST
123162 build-depends :
@@ -150,6 +189,24 @@ test-suite spec
150189 , unordered-containers
151190 , vector
152191 , yaml >= 0.10.0
192+ if impl(ghc >= 8.10 )
193+ default-extensions : ImportQualifiedPost StandaloneKindSignatures
194+ if impl(ghc >= 8.6 )
195+ default-extensions : NumericUnderscores
196+ if impl(ghc >= 8.4 )
197+ default-extensions : EmptyDataDeriving HexFloatLiterals
198+ if impl(ghc >= 8.0 )
199+ default-extensions : DeriveLift TypeApplications
200+ if impl(ghc >= 7.10 )
201+ default-extensions : BinaryLiterals NamedWildCards
202+ if impl(ghc >= 7.8 )
203+ default-extensions : EmptyCase
204+ if impl(ghc >= 7.6 )
205+ default-extensions : InstanceSigs
206+ if impl(ghc >= 7.4 )
207+ default-extensions : ConstraintKinds PolyKinds
208+ if impl(ghc >= 7.2 )
209+ default-extensions : DeriveGeneric GADTSyntax
153210 build-tool-depends :
154211 hspec-discover :hspec-discover
155212 other-modules :
0 commit comments