packages feed

memcache-0.0.1: memcache.cabal

name:           memcache
version:        0.0.1
homepage:       https://github.com/dterei/memcache-hs
bug-reports:    https://github.com/dterei/memcache-hs/issues
synopsis:       A memcached client library.
description:    
  A client library for a memcached cluster. It is aimed at full binary protocol
  support, ease of use and speed.
license:        BSD3
license-file:   LICENSE
author:         David Terei <code@davidterei.com>
maintainer:     David Terei <code@davidterei.com>
copyright:      2015 David Terei.
category:       Database
build-type:     Simple
cabal-version:  >= 1.8
extra-source-files:
  README.md

library
  exposed-modules:
    Database.Memcache.Client
    Database.Memcache.Cluster
    Database.Memcache.Errors
    Database.Memcache.Protocol
    Database.Memcache.SASL
    Database.Memcache.Server
    Database.Memcache.Types
    Database.Memcache.Wire

  build-depends:
    base < 5,
    binary >= 0.6.2.0,
    blaze-builder >= 0.3.1.0,
    bytestring >= 0.9.2.1,
    hashable >= 1.2.0.3,
    network >= 2.4,
    resource-pool >= 0.2.1.0,
    vector >= 0.7,
    vector-algorithms >= 0.5,
    time >= 1.4

  ghc-options: -Wall
  if impl(ghc >= 6.8)
    ghc-options: -fwarn-tabs

-- executable opgen
--   hs-source-dirs: tools
--   main-is: OpGen.hs
--   ghc-options: -threaded
--   build-depends:
--     async,
--     base < 5,
--     bytestring,
--     memcache,
--     network
--
-- executable load
--   hs-source-dirs: tools
--   main-is: Loader.hs
--   ghc-options: -threaded
--   build-depends:
--     async,
--     base < 5,
--     bytestring,
--     memcache,
--     network

test-suite full
  type:           exitcode-stdio-1.0
  hs-source-dirs: test
  main-is:        Full.hs

  build-depends:
    base < 5,
    bytestring >= 0.9.2.1,
    memcache

  if impl(ghc >= 6.8)
    ghc-options: -fwarn-tabs

benchmark parser
  type:           exitcode-stdio-1.0
  hs-source-dirs: bench
  main-is:        Parser.hs

  build-depends:
    base < 5,
    bytestring >= 0.9.2.1,
    criterion > 0.6.0.0,
    memcache

  if impl(ghc >= 6.8)
    ghc-options: -fwarn-tabs

source-repository head
  type:     git
  location: http://github.com/dterei/memcache-hs