cabal-version: 2.4 name: hasql-transaction-io version: 0.2.0.0 synopsis: Perform IO actions during transactions for Hasql description: Perform IO actions during transactions for Hasql. If you need transactions in hasql but do not need to perform IO in the middle of the transaction, use haslq-transaction. This packages differs from hasql-transaction in that it sacrifices invisible retries for the ability to perform arbitrary IO in the middle of a transaction. This is beneficial when your transaction is long-lived (e.g. when using cursors) and you wish to perform IO with requested data. See for an example use case. homepage: https://github.com/andremarianiello/hasql-transaction-io bug-reports: https://github.com/andremarianiello/hasql-transaction-io/issues license: MIT license-file: LICENSE author: Andre Marianiello maintainer: andremarianiello@users.noreply.github.com copyright: (c) 2022, Andre Marianiello category: Database, PostgreSQL, Hasql source-repository head type: git location: https://github.com/andremarianiello/hasql-transaction-io.git library exposed-modules: Hasql.CursorTransactionIO Hasql.CursorTransactionIO.TransactionIO Hasql.TransactionIO Hasql.TransactionIO.Sessions other-modules: Hasql.Private.CursorTransactionIO Hasql.Private.Session.UnliftIO Hasql.Private.Statements Hasql.Private.TransactionIO Hasql.Private.Types default-extensions: DeriveFunctor FlexibleContexts GeneralizedNewtypeDeriving LambdaCase NamedFieldPuns RankNTypes other-extensions: OverloadedStrings build-depends: , base >=4.14 && <4.17 , bytestring >=0.10 , bytestring-tree-builder ^>=0.2 , hasql ^>=1.6 , mtl ^>=2.2 , resourcet ^>=1.2 , safe-exceptions ^>=0.1 , transformers ^>=0.5 , unliftio-core ^>=0.2 hs-source-dirs: library default-language: Haskell2010