packages feed

edis-0.0.1.0: edis.cabal

name:                   edis
version:                0.0.1.0
synopsis:
    Statically typechecked client for Redis
description:
    This library is a Haskell client for the Redis datastore built on top of
    Hedis, with stronger type-level guarantees.
    .
    For detailed documentation, see the "Database.Edis" module.
    .
license:                MIT
license-file:           LICENSE
author:                 Ting-Yan Lai
maintainer:             banacorn@gmail.com
copyright:              Copyright (c) 2015 Ting-Yan Lai
category:               Database
build-type:             Simple
extra-source-files:     README.md
cabal-version:          >=1.10

source-repository head
    type:     git
    location: https://github.com/banacorn/edis

library
    exposed-modules:    Database.Edis
    other-modules:      Database.Edis.Type
                    ,   Database.Edis.Helper
                    ,   Database.Edis.Command
                    ,   Database.Edis.Command.Key
                    ,   Database.Edis.Command.String
                    ,   Database.Edis.Command.List
                    ,   Database.Edis.Command.Hash
                    ,   Database.Edis.Command.Set
                    ,   Database.Edis.Command.ZSet
                    ,   Database.Edis.Command.Server
                    ,   Database.Edis.Command.Connection
                    ,   Database.Edis.Command.Scripting
                    ,   Database.Edis.Command.PubSub
    build-depends:      base        >=4.8 && <5
                    ,   bytestring  >=0.10
                    ,   hedis       >=0.6
                    ,   cereal      >=0.4
    hs-source-dirs:     src/
    default-language:   Haskell2010
    GHC-Options: -Wall