@@ -4,7 +4,7 @@ cabal-version: 1.12
44--
55-- see: https://github.com/sol/hpack
66--
7- -- hash: fbf7a7a0f44dad0ea63d4f70b57442153982e960d839d2ab2c38d9ad0d40114e
7+ -- hash: f07abca9cc4e0e29ae8560a745c8b2cc86944deeb041585db5d70a2aa3fea027
88
99name : graphula
1010version : 2.0.1.0
@@ -25,6 +25,11 @@ source-repository head
2525 type : git
2626 location : https://github.com/freckle/graphula
2727
28+ flag persistent-template
29+ description : Include dependency on persistent-template
30+ manual : False
31+ default : False
32+
2833library
2934 exposed-modules :
3035 Graphula
@@ -41,7 +46,7 @@ library
4146 Paths_graphula
4247 hs-source-dirs :
4348 src
44- ghc-options : -Weverything -Wno-unsafe -Wno-safe -Wno-missing-import-lists -Wno-implicit-prelude
49+ ghc-options : -Weverything -Wno-all-missed-specialisations -Wno-implicit-prelude -Wno-missing-import-lists -Wno-safe -Wno-unsafe
4550 build-depends :
4651 HUnit
4752 , QuickCheck
@@ -55,11 +60,12 @@ library
5560 , semigroups
5661 , temporary
5762 , text
58- , transformers
5963 , unliftio
6064 , unliftio-core
6165 if impl(ghc >= 8.10 )
6266 ghc-options : -Wno-missing-safe-haskell-mode -Wno-prepositive-qualified-module
67+ if impl(ghc < 8.6 )
68+ ghc-options : -Wno-redundant-constraints
6369 default-language : Haskell2010
6470
6571test-suite readme
@@ -69,27 +75,27 @@ test-suite readme
6975 Paths_graphula
7076 hs-source-dirs :
7177 test
72- ghc-options : -Weverything -Wno-unsafe -Wno-safe -Wno-missing-import-lists -Wno-implicit-prelude -pgmL markdown-unlit
78+ ghc-options : -Weverything -Wno-all-missed-specialisations -Wno-implicit-prelude -Wno-missing-import-lists -Wno-safe -Wno-unsafe -pgmL markdown-unlit
7379 build-depends :
7480 QuickCheck
75- , aeson
7681 , base < 5
77- , bytestring
78- , containers
7982 , generic-arbitrary
8083 , graphula
8184 , hspec
82- , http-api-data
8385 , markdown-unlit
8486 , monad-logger
85- , path-pieces
8687 , persistent
8788 , persistent-sqlite
88- , persistent-template
8989 , resourcet
90- , text
9190 , transformers
9291 , unliftio-core
9392 if impl(ghc >= 8.10 )
9493 ghc-options : -Wno-missing-safe-haskell-mode -Wno-prepositive-qualified-module
94+ if impl(ghc < 8.6 )
95+ ghc-options : -Wno-redundant-constraints
96+ if impl(ghc >= 8.8 )
97+ ghc-options : -Wno-missing-deriving-strategies
98+ if flag(persistent-template)
99+ build-depends :
100+ persistent-template
95101 default-language : Haskell2010
0 commit comments