1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
Index: b/postgresql-simple.cabal
===================================================================
--- a/postgresql-simple.cabal
+++ b/postgresql-simple.cabal
@@ -1,6 +1,7 @@
cabal-version: 1.12
name: postgresql-simple
version: 0.6.4
+x-revision: 8
synopsis: Mid-Level PostgreSQL client library
description:
Mid-Level PostgreSQL client library, forked from mysql-simple.
@@ -31,7 +32,9 @@ tested-with:
|| ==8.4.4
|| ==8.6.5
|| ==8.8.4
- || ==8.10.3
+ || ==8.10.7
+ || ==9.0.1
+ || ==9.2.1
library
default-language: Haskell2010
@@ -77,31 +80,31 @@ library
-- GHC bundled libs
build-depends:
- base >=4.6.0.0 && <4.15
+ base >=4.6.0.0 && <4.17
, bytestring >=0.10.0.0 && <0.12
, containers >=0.5.0.0 && <0.7
- , template-haskell >=2.8.0.0 && <2.17
- , text >=1.2.3.0 && <1.3
+ , template-haskell >=2.8.0.0 && <2.19
+ , text >=1.2.3.0 && <1.3 || >=2.0 && <2.1
, time-compat >=1.9.5 && <1.12
- , transformers >=0.3.0.0 && <0.6
+ , transformers >=0.3.0.0 && <0.7
-- Other dependencies
build-depends:
- aeson >=1.4.1.0 && <1.6
- , attoparsec >=0.13.2.2 && <0.14
+ aeson >=1.4.1.0 && <1.6 || >=2.0.0.0 && <2.2
+ , attoparsec >=0.13.2.2 && <0.15
, bytestring-builder >=0.10.8.1.0 && <0.11
, case-insensitive >=1.2.0.11 && <1.3
- , hashable >=1.2.7.0 && <1.4
+ , hashable >=1.2.7.0 && <1.5
, Only >=0.1 && <0.1.1
, postgresql-libpq >=0.9.4.3 && <0.10
, scientific >=0.3.6.2 && <0.4
, uuid-types >=1.0.3 && <1.1
- , vector >=0.12.0.1 && <0.13
+ , vector >=0.12.0.1 && <0.14
if !impl(ghc >=8.0)
build-depends:
fail >=4.9.0.0 && <4.10
- , semigroups >=0.18.5 && <0.20
+ , semigroups >=0.18.5 && <0.21
if !impl(ghc >=7.6)
build-depends: ghc-prim
@@ -134,7 +137,7 @@ test-suite inspection
main-is: Inspection.hs
build-depends:
base
- , inspection-testing >=0.4.1.1 && <0.5
+ , inspection-testing >=0.4.1.1 && <0.6
, postgresql-libpq
, postgresql-simple
, tasty
|