cabal-version: 2.4
name:          hasql-streams-example
version:       0.1.0.0
synopsis:
  An example program that shows how to use Hasql streams with Rel8

homepage:      https://github.com/andremarianiello/hasql-streams
bug-reports:   https://github.com/andremarianiello/hasql-streams/issues
license:       MIT
license-file:  LICENSE
author:        Andre Marianiello
maintainer:    andremarianiello@users.noreply.github.com
copyright:     (c) 2022, Andre Marianiello
category:      Database, PostgreSQL, Hasql, Streaming

executable hasql-streaming
  main-is:          Main.hs
  build-depends:
    , base                  >=4.14    && <4.17
    , bytestring
    , conduit
    , hasql
    , hasql-streams-conduit
    , hasql-streams-pipes
    , hasql-streams-streaming
    , hasql-streams-streamly
    , hasql-th
    , hasql-transaction
    , hasql-transaction-io
    , mtl
    , pipes
    , rel8                  ^>=1.2.1.0
    , resourcet
    , safe-exceptions
    , streaming
    , streamly
    , text
    , unliftio-core

  hs-source-dirs:   app
  default-language: Haskell2010