packages feed

postgresql-simple-opts-0.6.0.0: postgresql-simple-opts.cabal

name:                postgresql-simple-opts
version:             0.6.0.0
synopsis:            An optparse-applicative and envy parser for postgres options
description:         An optparse-applicative and envy parser for postgres options. See README.md
homepage:            https://github.com/jfischoff/postgresql-simple-opts#readme
license:             BSD3
license-file:        LICENSE
author:              Jonathan Fischoff
maintainer:          jonathangfischoff@gmail.com
copyright:           2016-2020 Jonathan Fischoff
category:            Database
build-type:          Simple
extra-source-files: CHANGELOG.md
  , README.md
  , development-notes.md
cabal-version:       >=1.10
tested-with: GHC==8.8.2

library
  hs-source-dirs:      src
  exposed-modules: Database.PostgreSQL.Simple.PartialOptions
                 , Database.PostgreSQL.Simple.PartialOptions.Internal
  build-depends: base >= 4.6 && < 5
               , postgresql-simple
               , optparse-applicative
               , bytestring
               , either
               , optparse-generic
               , data-default
               , split
               , uri-bytestring
               , generic-deriving
               , postgres-options >= 0.2.0.0
               , envy
  default-language:    Haskell2010
  ghc-options: -Wall
               -fno-warn-unused-do-bind

test-suite postgresql-simple-opts-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , containers
                     , envy
                     , postgresql-simple-opts
                     , hspec
                     , postgresql-simple
                     , optparse-applicative
                     , bytestring
                     , data-default
                     , postgres-options
  ghc-options: -Wall
               -fno-warn-unused-do-bind
               -threaded
               -rtsopts
               -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/jfischoff/postgresql-simple-opts