packages feed

hasql-backend-0.4.3: hasql-backend.cabal

name:
  hasql-backend
version:
  0.4.3
synopsis:
  API for backends of "hasql"
description:
  An API for implementation of backends for the
  <http://hackage.haskell.org/package/hasql "hasql">
  library.
category:
  Database
homepage:
  https://github.com/nikita-volkov/hasql-backend 
bug-reports:
  https://github.com/nikita-volkov/hasql-backend/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/hasql-backend.git


library
  hs-source-dirs:
    library
  other-modules:
    Hasql.Backend.Prelude
  exposed-modules:
    Hasql.Backend
  build-depends:
    -- data:
    bytestring < 0.11,
    text < 2,
    vector < 0.12,
    -- control:
    either >= 4.3 && < 5,
    free >= 4.6 && < 5,
    list-t < 0.5,
    transformers >= 0.3 && < 0.6,
    -- general:
    base-prelude < 2,
    base == 4.*
  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, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
  default-language:
    Haskell2010