packages feed

rds-data-codecs 0.0.0.1 → 0.0.0.2

raw patch · 2 files changed

+9/−5 lines, 2 filesdep ~http-client

Dependency ranges changed: http-client

Files

rds-data-codecs.cabal view
@@ -1,7 +1,7 @@ cabal-version: 2.2  name:                   rds-data-codecs-version:                0.0.0.1+version:                0.0.0.2 synopsis:               Codecs for use with AWS rds-data description:            Codecs for use with AWS rds-data. category:               Data@@ -13,7 +13,7 @@ copyright:              2024 John Ky license:                BSD-3-Clause license-file:           LICENSE-tested-with:            GHC == 9.8.1, GHC == 9.6.3, GHC == 9.4.8+tested-with:            GHC == 9.8.2, GHC == 9.6.4, GHC == 9.4.8 build-type:             Simple extra-source-files:     README.md                         test/files/golden/rds-row.json@@ -47,7 +47,7 @@ common generic-lens               { build-depends: generic-lens               >= 2.2.2.0    && < 3      } common hedgehog                   { build-depends: hedgehog                   >= 1.4        && < 2      } common hedgehog-extras            { build-depends: hedgehog-extras            >= 0.6.0.2    && < 0.7    }-common http-client                { build-depends: http-client                >= 0.5.14     && < 0.6    }+common http-client                { build-depends: http-client                >= 0.5.14     && < 0.8    } common lens                       { build-depends: lens                       >= 5.2.3      && < 6      } common mtl                        { build-depends: mtl                        >= 2          && < 3      } common optparse-applicative       { build-depends: optparse-applicative       >= 0.18.1.0   && < 0.19   }@@ -73,6 +73,9 @@                         -Wredundant-constraints                         -Wunused-imports +  if impl(ghc < 9.8)+    ghc-options:        -Wno-unused-imports+ library   import:               base, project-config                       , aeson@@ -133,7 +136,7 @@                         App.Options                         App.Show   hs-source-dirs:       app-  ghc-options:          -threaded -O2 "-with-rtsopts=-I0 -A16m -N2 --disable-delayed-os-memory-return"+  ghc-options:          -threaded "-with-rtsopts=-I0 -A16m -N2 --disable-delayed-os-memory-return"   build-depends:        rds-data-codecs  test-suite rds-data-codecs-test
src/Data/RdsData/Decode/Row.hs view
@@ -38,7 +38,8 @@ import Control.Monad.Except import Control.Monad.State import Data.ByteString (ByteString)-import Data.Functor.Identity+import Control.Monad+import Data.Functor.Identity ( Identity ) import Data.Int import Data.RdsData.Decode.Value (DecodeValue) import Data.RdsData.Types.Value