hasql/high-sql.cabal

75 lines
1.9 KiB
Plaintext
Raw Normal View History

2014-08-03 17:48:18 +04:00
name:
high-sql
version:
0.1.0
synopsis:
2014-08-03 20:15:33 +04:00
A general high level and high quality API for relational databases
2014-08-03 17:48:18 +04:00
description:
category:
2014-08-03 20:15:33 +04:00
Database
2014-08-03 17:48:18 +04:00
homepage:
https://github.com/nikita-volkov/high-sql
bug-reports:
https://github.com/nikita-volkov/high-sql/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
source-repository head
type:
git
location:
git://github.com/nikita-volkov/high-sql.git
library
hs-source-dirs:
library
other-modules:
HighSQL.Prelude
2014-08-04 16:40:04 +04:00
HighSQL.QQ.Parser
2014-08-03 17:48:18 +04:00
exposed-modules:
HighSQL.Backend
build-depends:
2014-08-04 15:29:41 +04:00
-- template-haskell:
2014-08-11 19:10:18 +04:00
template-haskell >= 2.8 && < 2.10,
2014-08-04 02:37:01 +04:00
-- parsing:
2014-08-11 19:10:18 +04:00
attoparsec == 0.12.*,
2014-08-03 17:48:18 +04:00
-- database:
ex-pool == 0.2.*,
2014-08-04 02:36:41 +04:00
-- data:
2014-08-11 18:13:37 +04:00
Decimal == 0.4.*,
2014-08-05 04:07:18 +04:00
time == 1.4.*,
2014-08-04 02:36:41 +04:00
bytestring == 0.10.*,
2014-08-11 19:10:18 +04:00
text == 1.1.*,
2014-08-04 02:36:41 +04:00
hashable == 1.2.*,
2014-08-05 00:21:32 +04:00
-- control:
list-t >= 0.2.1 && < 0.3,
2014-08-05 17:02:08 +04:00
mmorph == 1.0.*,
2014-08-05 00:21:32 +04:00
monad-control == 0.3.*,
transformers-base == 0.4.*,
2014-08-03 17:48:18 +04:00
-- errors:
loch-th == 0.2.*,
placeholders == 0.1.*,
-- general:
mtl-prelude == 0.1.*,
2014-08-04 16:04:53 +04:00
base-prelude >= 0.1.3 && < 0.2
ghc-options:
-funbox-strict-fields
2014-08-03 17:48:18 +04: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