mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
a5325d6aea
- In a previous PR we made more use of `common` stanzas, but these require `cabal-version: 2.2` (so some of those stanzas were not functional before this PR). This just bumps the `cabal-version`s straight to 3.6, which is the latest version we support in CI, where we build with cabal 3.6. - This `cabal-version` upgrade required fixing a few `license` fields, from `BSD3` to `BSD-3-Clause`. I've also added `default-language` fields where appropriate, although this is perhaps optional. - Using cabal's [syntax for applying options to all _local_ packages](https://cabal.readthedocs.io/en/3.8/cabal-project.html#package-configuration-options), we unify the cabal configuration, and apply `-Werror` to all local packages, which wasn't the case until now. - Applying `-Werror` to all local packages required a few additional exceptions to the warnings that were switched on in hasura/graphql-engine-mono#7614. - Deleted SCM links to the original pool library. Overall, the effect of this PR is: - more warnings - stricter compilation - ~~less cabal configuration~~ PR-URL: https://github.com/hasura/graphql-engine-mono/pull/7730 GitOrigin-RevId: 592e9e46d103bcc8726df5b745306bd9f77f7efc
73 lines
2.0 KiB
Plaintext
73 lines
2.0 KiB
Plaintext
cabal-version: 3.6
|
|
|
|
name: aeson-ordered
|
|
version: 0.1.0.0
|
|
description: Provides a data type that mirrors Aeson's 'Value', but that preserves order of object properties using an insertion-ordered map.
|
|
homepage: https://github.com/hasura/github-engine-mono#readme
|
|
bug-reports: https://github.com/hasura/github-engine-mono/issues
|
|
author: Anon Ray <anon@hasura.io>,
|
|
Bryan O'Sullivan <bos@serpentine.com>,
|
|
MailRank, Inc.
|
|
maintainer: Anon Ray <anon@hasura.io>,
|
|
Bryan O'Sullivan <bos@serpentine.com>,
|
|
MailRank, Inc.
|
|
license: BSD-3-Clause
|
|
license-file: LICENSE
|
|
build-type: Simple
|
|
extra-source-files:
|
|
CHANGELOG.md
|
|
LICENSE
|
|
|
|
source-repository head
|
|
type: git
|
|
location: https://github.com/hasura/github-engine-mono
|
|
|
|
library
|
|
exposed-modules:
|
|
Data.Aeson.Ordered
|
|
other-modules:
|
|
Paths_aeson_ordered
|
|
hs-source-dirs:
|
|
src
|
|
default-extensions:
|
|
BangPatterns
|
|
DeriveDataTypeable
|
|
DeriveGeneric
|
|
DerivingStrategies
|
|
GeneralizedNewtypeDeriving
|
|
ImportQualifiedPost
|
|
LambdaCase
|
|
OverloadedStrings
|
|
StrictData
|
|
ghc-options:
|
|
-foptimal-applicative-do
|
|
-- 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-deriving-typeable
|
|
-Wno-implicit-prelude
|
|
build-depends:
|
|
aeson
|
|
, attoparsec
|
|
, base
|
|
, bytestring
|
|
, hashable
|
|
, insert-ordered-containers
|
|
, lens
|
|
, lens-aeson
|
|
, scientific
|
|
, text
|
|
, vector
|
|
default-language: Haskell2010
|