2023-01-31 21:23:52 +03:00
|
|
|
cabal-version: 3.6
|
2022-07-07 18:54:32 +03:00
|
|
|
|
2022-07-29 19:21:00 +03:00
|
|
|
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.
|
2023-01-31 21:23:52 +03:00
|
|
|
license: BSD-3-Clause
|
2022-07-29 19:21:00 +03:00
|
|
|
license-file: LICENSE
|
|
|
|
build-type: Simple
|
2022-07-07 18:54:32 +03:00
|
|
|
extra-source-files:
|
2022-07-29 19:21:00 +03:00
|
|
|
CHANGELOG.md
|
|
|
|
LICENSE
|
2022-07-07 18:54:32 +03:00
|
|
|
|
|
|
|
source-repository head
|
2022-07-29 19:21:00 +03:00
|
|
|
type: git
|
|
|
|
location: https://github.com/hasura/github-engine-mono
|
2022-07-07 18:54:32 +03:00
|
|
|
|
|
|
|
library
|
2022-07-29 19:21:00 +03:00
|
|
|
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
|
2023-01-30 14:23:08 +03:00
|
|
|
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
|
2023-01-31 21:23:52 +03:00
|
|
|
-Wno-deriving-typeable
|
|
|
|
-Wno-implicit-prelude
|
2022-07-29 19:21:00 +03:00
|
|
|
build-depends:
|
|
|
|
aeson
|
|
|
|
, attoparsec
|
|
|
|
, base
|
|
|
|
, bytestring
|
|
|
|
, hashable
|
|
|
|
, insert-ordered-containers
|
|
|
|
, lens
|
|
|
|
, lens-aeson
|
|
|
|
, scientific
|
|
|
|
, text
|
|
|
|
, vector
|
|
|
|
default-language: Haskell2010
|