packages feed

hasql-backend-0.2.2: hasql-backend.cabal

name:
  hasql-backend
version:
  0.2.2
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 < 1.3,
    vector < 0.11,
    -- control:
    list-t < 0.5,
    -- general:
    base-prelude < 0.2,
    base >= 4.5 && < 4.8
  ghc-options:
    -funbox-strict-fields
  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