Restrict base package version and cabal additions
There are issues with ghc 8.2 and 8.4, see https://github.com/PostgREST/postgrest/issues/1109
This commit is contained in:
committed by
Steve Chávez
parent
dfa9055c34
commit
5e7606134a
@@ -6,6 +6,7 @@
|
|||||||
</a>
|
</a>
|
||||||
[](https://gitter.im/begriffs/postgrest)
|
[](https://gitter.im/begriffs/postgrest)
|
||||||
[](http://postgrest.org)
|
[](http://postgrest.org)
|
||||||
|
[](http://hackage.haskell.org/package/postgrest)
|
||||||
[](https://hub.docker.com/r/postgrest/postgrest/)
|
[](https://hub.docker.com/r/postgrest/postgrest/)
|
||||||
[](https://www.patreon.com/postgrest)
|
[](https://www.patreon.com/postgrest)
|
||||||
|
|
||||||
|
|||||||
+6
-5
@@ -7,8 +7,9 @@ synopsis: REST API for any Postgres database
|
|||||||
license: MIT
|
license: MIT
|
||||||
license-file: LICENSE
|
license-file: LICENSE
|
||||||
author: Joe Nelson, Adam Baker
|
author: Joe Nelson, Adam Baker
|
||||||
homepage: https://github.com/PostgREST/postgrest
|
homepage: https://postgrest.org
|
||||||
maintainer: cred+github@begriffs.com
|
maintainer: Steve Chávez <stevechavezast@gmail.com>
|
||||||
|
bug-reports: https://github.com/PostgREST/postgrest/issues
|
||||||
category: Web
|
category: Web
|
||||||
build-type: Simple
|
build-type: Simple
|
||||||
cabal-version: >=1.10
|
cabal-version: >=1.10
|
||||||
@@ -30,7 +31,7 @@ executable postgrest
|
|||||||
"-with-rtsopts=-N -I2"
|
"-with-rtsopts=-N -I2"
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
build-depends: auto-update
|
build-depends: auto-update
|
||||||
, base
|
, base >= 4.8 && < 4.10
|
||||||
, hasql
|
, hasql
|
||||||
, hasql-pool
|
, hasql-pool
|
||||||
, postgrest
|
, postgrest
|
||||||
@@ -51,7 +52,7 @@ library
|
|||||||
default-extensions: OverloadedStrings, QuasiQuotes, NoImplicitPrelude
|
default-extensions: OverloadedStrings, QuasiQuotes, NoImplicitPrelude
|
||||||
build-depends: aeson
|
build-depends: aeson
|
||||||
, ansi-wl-pprint
|
, ansi-wl-pprint
|
||||||
, base >= 4.8 && < 6
|
, base >= 4.8 && < 4.10
|
||||||
, base64-bytestring
|
, base64-bytestring
|
||||||
, bytestring
|
, bytestring
|
||||||
, case-insensitive
|
, case-insensitive
|
||||||
@@ -143,7 +144,7 @@ Test-Suite spec
|
|||||||
, aeson-qq
|
, aeson-qq
|
||||||
, async
|
, async
|
||||||
, auto-update
|
, auto-update
|
||||||
, base
|
, base >= 4.8 && < 4.10
|
||||||
, bytestring
|
, bytestring
|
||||||
, base64-bytestring
|
, base64-bytestring
|
||||||
, case-insensitive
|
, case-insensitive
|
||||||
|
|||||||
Reference in New Issue
Block a user