hasql/hasql.cabal

166 lines
5.4 KiB
Plaintext
Raw Normal View History

2014-08-03 17:48:18 +04:00
name:
2014-10-18 00:03:02 +04:00
hasql
2014-08-03 17:48:18 +04:00
version:
2015-11-08 21:09:42 +03:00
1
category:
Hasql, Database, PostgreSQL
2014-08-03 17:48:18 +04:00
synopsis:
2015-11-08 21:09:42 +03:00
A very efficient PostgreSQL driver and a flexible mapping API
2014-08-03 17:48:18 +04:00
description:
2015-11-08 21:09:42 +03:00
This package is the root of the \"hasql\" ecosystem.
2014-08-03 17:48:18 +04:00
homepage:
2014-10-18 00:03:02 +04:00
https://github.com/nikita-volkov/hasql
2014-08-03 17:48:18 +04:00
bug-reports:
2014-10-18 00:03:02 +04:00
https://github.com/nikita-volkov/hasql/issues
2014-08-03 17:48:18 +04:00
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:
2015-11-08 21:09:42 +03:00
Custom
2014-08-03 17:48:18 +04:00
cabal-version:
>=1.10
source-repository head
type:
git
location:
2014-10-18 00:03:02 +04:00
git://github.com/nikita-volkov/hasql.git
2014-08-03 17:48:18 +04:00
library
hs-source-dirs:
library
2014-10-28 15:02:44 +03:00
ghc-options:
default-extensions:
Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFunctor, DeriveGeneric, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, ImpredicativeTypes, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
default-language:
Haskell2010
2014-08-03 17:48:18 +04:00
other-modules:
2014-10-18 00:03:02 +04:00
Hasql.Prelude
2015-11-08 21:09:42 +03:00
Hasql.PTI
Hasql.IO
Hasql.Settings
Hasql.Commands
Hasql.Deserialization.Array
Hasql.Deserialization.Composite
Hasql.Deserialization.Value
Hasql.Deserialization.Row
Hasql.Deserialization.Result
Hasql.Deserialization.Results
Hasql.Serialization.Array
Hasql.Serialization.Value
Hasql.Serialization.Params
Hasql.PreparedStatementRegistry
2014-08-03 17:48:18 +04:00
exposed-modules:
2015-11-08 21:09:42 +03:00
Hasql.Query
Hasql.Deserialization
Hasql.Serialization
Hasql.Connection
2014-08-03 17:48:18 +04:00
build-depends:
2015-11-08 21:09:42 +03:00
-- parsing:
2015-05-15 08:05:49 +03:00
attoparsec >= 0.10 && < 0.14,
2015-11-08 21:09:42 +03:00
-- database:
postgresql-binary >= 0.7.2 && < 0.8,
postgresql-libpq == 0.9.*,
-- data:
dlist >= 0.7 && < 0.8,
aeson >= 0.7 && < 0.11,
uuid == 1.3.*,
vector >= 0.10 && < 0.12,
time >= 1.4 && < 1.6,
hashtables >= 1.1 && < 1.3,
scientific >= 0.2 && < 0.4,
text >= 1 && < 1.3,
bytestring >= 0.10 && < 0.11,
hashable >= 1.2 && < 1.3,
-- control:
data-default-class >= 0.0.1 && < 0.1,
profunctors >= 5.1 && < 6,
contravariant-extras == 0.1.*,
contravariant >= 1.3 && < 2,
either >= 4.4.1 && < 5,
transformers >= 0.3 && < 0.5,
2015-11-08 21:09:42 +03:00
-- errors:
loch-th == 0.2.*,
placeholders == 0.1.*,
-- general:
base-prelude >= 0.1.19 && < 0.2,
base >= 4.6 && < 5
2014-10-28 15:00:42 +03:00
2015-11-08 21:09:42 +03:00
test-suite doctest
type:
2014-11-18 12:19:27 +03:00
exitcode-stdio-1.0
2015-11-08 21:09:42 +03:00
hs-source-dirs:
doctest
main-is:
2014-11-18 12:19:27 +03:00
Main.hs
ghc-options:
-threaded
"-with-rtsopts=-N"
2015-11-08 21:09:42 +03:00
build-depends:
doctest == 0.10.*,
directory == 1.2.*,
filepath >= 1.3 && < 1.5,
base-prelude >= 0.1.19 && < 0.2,
base
2014-11-18 12:19:27 +03:00
default-extensions:
Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFunctor, DeriveGeneric, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, ImpredicativeTypes, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
default-language:
Haskell2010
2015-11-08 21:09:42 +03:00
test-suite hspec
type:
2014-11-23 19:54:11 +03:00
exitcode-stdio-1.0
hs-source-dirs:
2015-11-08 21:09:42 +03:00
hspec
main-is:
2014-11-23 19:54:11 +03:00
Main.hs
ghc-options:
-threaded
"-with-rtsopts=-N"
default-extensions:
Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFunctor, DeriveGeneric, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, ImpredicativeTypes, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
default-language:
Haskell2010
build-depends:
2015-11-08 21:09:42 +03:00
-- database:
2014-11-29 14:48:14 +03:00
hasql,
2015-11-08 21:09:42 +03:00
-- testing:
hspec >= 2.2.0 && < 2.3,
quickcheck-instances >= 0.3.11 && < 0.4,
QuickCheck >= 2.8.1 && < 2.9,
-- general:
base-prelude >= 0.1.19 && < 0.2
2014-11-23 19:54:11 +03:00
2015-11-08 21:09:42 +03:00
executable demo
2014-10-28 15:00:42 +03:00
hs-source-dirs:
demo
main-is:
Main.hs
ghc-options:
-threaded
"-with-rtsopts=-N"
2015-11-08 21:09:42 +03:00
default-extensions:
Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFunctor, DeriveGeneric, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, ImpredicativeTypes, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
2014-10-28 15:00:42 +03:00
default-language:
Haskell2010
build-depends:
2015-11-08 21:09:42 +03:00
data-default-class,
contravariant-extras,
contravariant,
2014-11-29 14:48:14 +03:00
hasql,
2015-11-08 21:09:42 +03:00
text,
bytestring,
base-prelude