cabal-version: 3.0 name: hasql version: 1.7 category: Hasql, Database, PostgreSQL synopsis: An efficient PostgreSQL driver with a flexible mapping API description: Root of the \"hasql\" ecosystem. For details and tutorials see . The API comes free from all kinds of exceptions. All error-reporting is explicit and is presented using the 'Either' type. This library requires to have the \"libpq\" library installed on the running system. It comes distributed with PostgreSQL. To be able to use the \"Pipeline\" feature you'll need \"libpq\" of version >14. This feature does not however put any requirements on the version of the PostgreSQL server. homepage: https://github.com/nikita-volkov/hasql bug-reports: https://github.com/nikita-volkov/hasql/issues author: Nikita Volkov maintainer: Nikita Volkov copyright: (c) 2014, Nikita Volkov license: MIT license-file: LICENSE extra-source-files: CHANGELOG.md README.md source-repository head type: git location: git://github.com/nikita-volkov/hasql.git common base default-language: Haskell2010 default-extensions: ApplicativeDo Arrows BangPatterns BlockArguments ConstraintKinds DataKinds DefaultSignatures DeriveDataTypeable DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable DerivingVia EmptyDataDecls FlexibleContexts FlexibleInstances FunctionalDependencies GADTs GeneralizedNewtypeDeriving ImportQualifiedPost LambdaCase LiberalTypeSynonyms MultiParamTypeClasses MultiWayIf NoImplicitPrelude NoMonomorphismRestriction OverloadedStrings PatternGuards QuasiQuotes RankNTypes RecordWildCards RoleAnnotations ScopedTypeVariables StandaloneDeriving StrictData TupleSections TypeFamilies TypeOperators common executable import: base ghc-options: -O2 -threaded -with-rtsopts=-N -rtsopts -funbox-strict-fields common test import: base ghc-options: -threaded -with-rtsopts=-N library import: base hs-source-dirs: library exposed-modules: Hasql.Connection Hasql.Decoders Hasql.Encoders Hasql.Pipeline Hasql.Session Hasql.Statement other-modules: Hasql.Commands Hasql.Connection.Core Hasql.Decoders.All Hasql.Decoders.Array Hasql.Decoders.Composite Hasql.Decoders.Result Hasql.Decoders.Results Hasql.Decoders.Row Hasql.Decoders.Value Hasql.Encoders.All Hasql.Encoders.Array Hasql.Encoders.Params Hasql.Encoders.Value Hasql.Errors Hasql.IO Hasql.LibPq14 Hasql.LibPq14.Ffi Hasql.LibPq14.Mappings Hasql.Pipeline.Core Hasql.PostgresTypeInfo Hasql.Prelude Hasql.PreparedStatementRegistry Hasql.Session.Core Hasql.Settings build-depends: aeson >=2 && <3, attoparsec >=0.10 && <0.15, base >=4.14 && <5, bytestring >=0.10 && <0.13, bytestring-strict-builder >=0.4.5.1 && <0.5, contravariant >=1.3 && <2, dlist >=0.8 && <0.9 || >=1 && <2, hashable >=1.2 && <2, hashtables >=1.1 && <2, mtl >=2 && <3, network-ip >=0.3.0.3 && <0.4, postgresql-binary >=0.13.1 && <0.14, postgresql-libpq ==0.10.1.0, profunctors >=5.1 && <6, scientific >=0.3 && <0.4, text >=1 && <3, text-builder >=0.6.7 && <0.7, time >=1.9 && <2, transformers >=0.6 && <0.7, uuid >=1.3 && <2, vector >=0.10 && <0.14, library testing-kit import: base hs-source-dirs: testing-kit exposed-modules: Hasql.TestingKit.Constants Hasql.TestingKit.Preludes.Base Hasql.TestingKit.Statements.BrokenSyntax Hasql.TestingKit.Statements.GenerateSeries Hasql.TestingKit.Statements.WrongDecoder Hasql.TestingKit.TestingDsl build-depends: base, bytestring, hasql, transformers, uuid, test-suite tasty import: base type: exitcode-stdio-1.0 hs-source-dirs: tasty main-is: Main.hs other-modules: Main.Connection Main.Prelude Main.Statements build-depends: contravariant-extras >=0.3.5.2 && <0.4, hasql, hasql:testing-kit, quickcheck-instances >=0.3.11 && <0.4, rerebase <2, tasty >=0.12 && <2, tasty-hunit >=0.9 && <0.11, tasty-quickcheck >=0.9 && <0.11, test-suite threads-test import: test type: exitcode-stdio-1.0 hs-source-dirs: threads-test main-is: Main.hs other-modules: Main.Statements build-depends: hasql, rerebase, benchmark benchmarks import: executable type: exitcode-stdio-1.0 hs-source-dirs: benchmarks main-is: Main.hs build-depends: criterion >=1.6 && <2, hasql, rerebase <2, test-suite profiling import: base type: exitcode-stdio-1.0 hs-source-dirs: profiling main-is: Main.hs ghc-options: -O2 -threaded -rtsopts build-depends: hasql, rerebase >=1 && <2, test-suite hspec import: test type: exitcode-stdio-1.0 hs-source-dirs: hspec main-is: Main.hs other-modules: Hasql.PipelineSpec build-tool-depends: hspec-discover:hspec-discover build-depends: hasql:testing-kit, hspec, rerebase >=1 && <2,