mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
d85de6bb6a
Ideally, we'd have one place for this. I have also removed the pinned Cabal version because v3.10 should address the bug we were seeing in the v3.8 series. PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8497 GitOrigin-RevId: d0c68792c30e2e28ff2e210dd3ac8d28b83ac851
49 lines
1.2 KiB
Plaintext
49 lines
1.2 KiB
Plaintext
cabal-version: 3.6
|
|
name: hasura-prelude
|
|
version: 0.1.0.0
|
|
|
|
library
|
|
hs-source-dirs: src
|
|
build-depends:
|
|
aeson,
|
|
aeson-casing,
|
|
autodocodec,
|
|
base,
|
|
base64-bytestring,
|
|
bytestring,
|
|
containers,
|
|
deepseq,
|
|
hashable,
|
|
insert-ordered-containers,
|
|
lens,
|
|
mtl,
|
|
nonempty-containers,
|
|
pretty-simple,
|
|
text,
|
|
time,
|
|
transformers,
|
|
transformers-base,
|
|
unordered-containers,
|
|
witherable
|
|
default-language: Haskell2010
|
|
exposed-modules:
|
|
Data.Time.Clock.Units
|
|
Hasura.Prelude
|
|
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-redundant-constraints
|
|
-Wno-unused-imports
|