hasql/hasql.cabal

151 lines
6.6 KiB
Plaintext
Raw Normal View History

2019-05-20 14:57:05 +03:00
name: hasql
2022-09-08 14:13:37 +03:00
version: 1.6.1.1
2019-05-20 14:57:05 +03:00
category: Hasql, Database, PostgreSQL
synopsis: An efficient PostgreSQL driver with a flexible mapping API
2014-08-03 17:48:18 +04:00
description:
2019-11-06 02:26:57 +03:00
Root of the \"hasql\" ecosystem.
For details and tutorials see
<https://github.com/nikita-volkov/hasql the readme>.
2015-11-22 10:10:21 +03:00
.
2019-01-21 08:58:32 +03:00
The API comes free from all kinds of exceptions. All error-reporting is explicit and is presented using the 'Either' type.
2019-05-20 14:57:05 +03:00
homepage: https://github.com/nikita-volkov/hasql
bug-reports: https://github.com/nikita-volkov/hasql/issues
author: Nikita Volkov <nikita.y.volkov@mail.ru>
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
copyright: (c) 2014, Nikita Volkov
license: MIT
license-file: LICENSE
build-type: Simple
cabal-version: >=1.10
extra-source-files:
CHANGELOG.md
README.md
2014-08-03 17:48:18 +04:00
source-repository head
2019-05-20 14:57:05 +03:00
type: git
location: git://github.com/nikita-volkov/hasql.git
2014-08-03 17:48:18 +04:00
library
2019-05-20 14:57:05 +03:00
hs-source-dirs: library
default-extensions: Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, RoleAnnotations, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
2019-05-20 14:57:05 +03:00
default-language: Haskell2010
exposed-modules:
Hasql.Decoders
Hasql.Encoders
Hasql.Connection
2018-05-23 13:33:34 +03:00
Hasql.Statement
Hasql.Session
2014-08-03 17:48:18 +04:00
other-modules:
Hasql.Private.Prelude
Hasql.Private.Errors
Hasql.Private.PTI
2015-12-21 16:11:14 +03:00
Hasql.Private.IO
Hasql.Private.Session
2015-12-21 16:45:10 +03:00
Hasql.Private.Connection
2015-12-21 16:11:14 +03:00
Hasql.Private.PreparedStatementRegistry
Hasql.Private.Settings
Hasql.Private.Commands
2019-05-21 01:20:57 +03:00
Hasql.Private.Decoders
Hasql.Private.Decoders.Array
Hasql.Private.Decoders.Composite
Hasql.Private.Decoders.Value
Hasql.Private.Decoders.Row
Hasql.Private.Decoders.Result
Hasql.Private.Decoders.Results
2019-05-20 19:24:27 +03:00
Hasql.Private.Encoders
Hasql.Private.Encoders.Array
Hasql.Private.Encoders.Value
Hasql.Private.Encoders.Params
2014-08-03 17:48:18 +04:00
build-depends:
aeson >=2 && <3,
2021-03-23 15:06:42 +03:00
attoparsec >=0.10 && <0.15,
base >=4.12 && <5,
2021-03-23 15:36:30 +03:00
bytestring >=0.10 && <0.12,
2019-05-20 14:57:05 +03:00
bytestring-strict-builder >=0.4.5.1 && <0.5,
contravariant >=1.3 && <2,
dlist ==0.8.* || >=1 && <2,
2019-05-20 14:57:05 +03:00
hashable >=1.2 && <2,
hashtables >=1.3 && <2,
2019-05-20 14:57:05 +03:00
mtl >=2 && <3,
network-ip >=0.3.0.3 && <0.4,
postgresql-binary >=0.12.5 && <0.13,
2019-05-20 14:57:05 +03:00
postgresql-libpq ==0.9.*,
profunctors >=5.1 && <6,
scientific >=0.3 && <0.4,
2022-01-03 16:38:38 +03:00
text >=1 && <3,
text-builder >=0.6.7 && <0.7,
time >=1.9 && <2,
2022-01-03 16:33:41 +03:00
transformers >=0.3 && <0.7,
uuid >=1.3 && <2,
2022-06-20 13:55:18 +03:00
vector >=0.10 && <0.14
2014-10-28 15:00:42 +03:00
2015-11-10 21:19:41 +03:00
test-suite tasty
2019-05-20 14:57:05 +03:00
type: exitcode-stdio-1.0
hs-source-dirs: tasty
main-is: Main.hs
default-extensions: Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, RoleAnnotations, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
2019-05-20 14:57:05 +03:00
default-language: Haskell2010
2015-11-15 12:13:45 +03:00
other-modules:
Main.DSL
2016-01-24 19:15:11 +03:00
Main.Connection
2018-05-23 13:33:34 +03:00
Main.Statements
2015-11-15 12:13:45 +03:00
Main.Prelude
2014-11-23 19:54:11 +03:00
build-depends:
contravariant-extras >=0.3.5.2 && <0.4,
2014-11-29 14:48:14 +03:00
hasql,
2019-05-20 14:57:05 +03:00
QuickCheck >=2.8.1 && <3,
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
2014-11-23 19:54:11 +03:00
2016-03-06 13:44:56 +03:00
test-suite threads-test
2019-05-20 14:57:05 +03:00
type: exitcode-stdio-1.0
hs-source-dirs: threads-test
main-is: Main.hs
default-extensions:
Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, RoleAnnotations, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
2019-05-20 14:57:05 +03:00
default-language:
Haskell2010
2016-03-06 13:44:56 +03:00
other-modules:
2018-05-23 13:33:34 +03:00
Main.Statements
2016-03-06 13:44:56 +03:00
ghc-options:
-O2
-threaded
"-with-rtsopts=-N"
build-depends:
hasql,
rerebase
2016-03-06 13:44:56 +03:00
2017-04-10 17:55:58 +03:00
benchmark benchmarks
2019-05-20 14:57:05 +03:00
type: exitcode-stdio-1.0
hs-source-dirs: benchmarks
main-is: Main.hs
default-extensions: Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, RoleAnnotations, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
2019-05-20 14:57:05 +03:00
default-language: Haskell2010
2015-11-16 22:06:47 +03:00
ghc-options:
-O2
-threaded
"-with-rtsopts=-N"
2017-04-14 01:41:36 +03:00
-rtsopts
2017-04-10 17:55:58 +03:00
-funbox-strict-fields
2015-11-16 22:06:47 +03:00
build-depends:
2021-03-23 16:16:06 +03:00
gauge >=0.2.5 && <0.3,
2015-11-16 22:06:47 +03:00
hasql,
2019-05-20 14:57:05 +03:00
rerebase <2
2017-04-14 00:46:59 +03:00
test-suite profiling
2019-05-20 14:57:05 +03:00
type: exitcode-stdio-1.0
hs-source-dirs: profiling
main-is: Main.hs
default-extensions: Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, RoleAnnotations, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
2019-05-20 14:57:05 +03:00
default-language: Haskell2010
2017-04-14 00:46:59 +03:00
ghc-options:
-O2
-threaded
-rtsopts
build-depends:
hasql,
2019-05-20 14:57:05 +03:00
rerebase ==1.*