memcache-0.0.0: memcache.cabal
name: memcache
version: 0.0.0
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: 2013 David Terei.
category: Database
build-type: Simple
cabal-version: >= 1.8
extra-source-files:
README.md
library
exposed-modules:
Database.Memcache.Client
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,
network >= 2.4
ghc-options: -Wall
if impl(ghc >= 6.8)
ghc-options: -fwarn-tabs
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