From e5992a5a97a11aa9e018d82f704b0e596329529c Mon Sep 17 00:00:00 2001 From: Mitchell Rosen Date: Sun, 31 Jul 2022 15:03:13 -0400 Subject: [PATCH] add upper bounds to dependencies, and support hasql-1.6 --- hasql-interpolate.cabal | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/hasql-interpolate.cabal b/hasql-interpolate.cabal index 03644e5..7f96b21 100644 --- a/hasql-interpolate.cabal +++ b/hasql-interpolate.cabal @@ -1,6 +1,7 @@ cabal-version: 2.4 name: hasql-interpolate version: 0.1.0.3 +x-revision: 1 author: Travis Staton category: Hasql, Database, PostgreSQL @@ -35,22 +36,22 @@ library Hasql.Interpolate.Internal.EncodeRow Hasql.Interpolate.Internal.EncodeRow.TH - build-depends: base >= 4.14 && < 5 - , hasql ^>= 1.4 || ^>= 1.5 - , haskell-src-meta ^>= 0.8 - , template-haskell >= 2.14 - , megaparsec >= 8.0.0 - , text - , time - , uuid - , scientific - , aeson - , transformers - , mtl - , vector - , containers - , bytestring - , array + build-depends: aeson ^>= 1.5 || ^>= 2.0 || ^>= 2.1, + array ^>= 0.5, + base ^>= 4.14 || ^>= 4.15 || ^>= 4.16 || ^>= 4.17, + bytestring ^>= 0.10 || ^>= 0.11, + containers ^>= 0.5 || ^>= 0.6, + haskell-src-meta ^>= 0.8, + hasql ^>= 1.4 || ^>= 1.5 || ^>= 1.6, + megaparsec ^>= 8.0.0 || ^>= 9.0 || ^>= 9.1 || ^>= 9.2 || ^>= 9.3, + mtl ^>= 2.1 || ^>= 2.2, + scientific ^>= 0.3, + template-haskell ^>= 2.14 || ^>= 2.15 || ^>= 2.16 || ^>= 2.17 || ^>= 2.18 || ^>= 2.19, + text ^>= 1.2.5 || ^>= 2.0, + time ^>= 1.9.3 || ^>= 1.10 || ^>= 1.11 || ^>= 1.12, + transformers ^>= 0.5 || ^>= 0.6, + uuid ^>= 1.3, + vector ^>= 0.11 || ^>= 0.12 || ^>= 0.13, hs-source-dirs: lib default-language: Haskell2010