packages feed

postgresql-libpq-notify-0.1.0.0: postgresql-libpq-notify.cabal

name: postgresql-libpq-notify
version: 0.1.0.0
synopsis: Minimal dependency PostgreSQL notifications library
description: Minimal dependency PostgreSQL notifications library. Please see README.md
homepage:            https://github.com/jfischoff/postgresql-libpq-notify#readme
license:             BSD3
license-file:        LICENSE
author: Jonathan Fischoff, Moritz Kiefeir, Leo P. Smith
maintainer:          jonathan.g.fischoff@gmail.com
copyright: 2020
category: Database
build-type: Simple
cabal-version: >=1.10
extra-source-files:README.md, CHANGELOG.md
tested-with: GHC==8.8.2

library
  hs-source-dirs: src
  exposed-modules: Database.PostgreSQL.LibPQ.Notify
  build-depends: base < 5
               , async
               , postgresql-libpq
               , stm
  ghc-options: -Wall
  default-language: Haskell2010

test-suite test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Main.hs
  build-depends:       base
                     , async
                     , hspec
                     , postgresql-libpq
                     , postgresql-libpq-notify
                     , postgres-options
                     , text
                     , tmp-postgres
  ghc-options: -Wall -threaded
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/jfischoff/postgresql-libpq-notify