mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 09:22:43 +03:00
aeff6e162a
#7730 added `package` stanzas for all our internal Haskell libraries, so that `-Werror` was switched on for all of them. However, #7534 was developed simultaneously, and merged shortly after, so that we missed `package` stanzas for `hasura-incremental` and `arrows-extra`. Then #7761 added one for `hasura-incremental`. This PR fixes one warning for a test suite there, and adds the missing `package` stanza for `arrows-extra`. PR-URL: https://github.com/hasura/graphql-engine-mono/pull/7770 GitOrigin-RevId: 5f5c3fb5d4852c88ed2e14a3fa83fe264aec895b
44 lines
1000 B
Plaintext
44 lines
1000 B
Plaintext
cabal-version: 2.2
|
|
name: arrows-extra
|
|
version: 1.0.0
|
|
build-type: Simple
|
|
copyright: Hasura Inc.
|
|
extra-source-files: README.md
|
|
|
|
library
|
|
hs-source-dirs: src
|
|
default-language: GHC2021
|
|
|
|
ghc-options:
|
|
-- Taken from https://medium.com/mercury-bank/enable-all-the-warnings-a0517bc081c3
|
|
-Weverything
|
|
-Wno-missing-exported-signatures
|
|
-Wno-missing-import-lists
|
|
-Wno-missed-specialisations
|
|
-Wno-all-missed-specialisations
|
|
-Wno-unsafe
|
|
-Wno-safe
|
|
-Wno-missing-local-signatures
|
|
-Wno-monomorphism-restriction
|
|
-Wno-missing-kind-signatures
|
|
-Wno-missing-safe-haskell-mode
|
|
-- We want these warnings, but the code doesn't satisfy them yet:
|
|
-Wno-missing-deriving-strategies
|
|
-Wno-unused-packages
|
|
|
|
build-depends:
|
|
, base
|
|
, mtl
|
|
, transformers
|
|
|
|
exposed-modules:
|
|
Control.Arrow.Extended
|
|
Control.Arrow.Interpret
|
|
Control.Arrow.Trans
|
|
|
|
default-extensions:
|
|
BlockArguments
|
|
FunctionalDependencies
|
|
LambdaCase
|
|
NoImplicitPrelude
|