packages feed

redis-resp-1.0.0: redis-resp.cabal

name:          redis-resp
version:       1.0.0
synopsis:      REdis Serialization Protocol (RESP) implementation.
license:       MPL-2.0
license-file:  LICENSE
author:        Toralf Wittner
maintainer:    Toralf Wittner <tw@dtex.org>, Roman S. Borschel <roman@pkaboo.org>
copyright:     (C) 2014 Toralf Wittner
homepage:      https://gitlab.com/twittner/redis-resp/
bug-reports:   https://gitlab.com/twittner/redis-resp/issues
category:      Data
build-type:    Simple
cabal-version: >= 1.10

description:
    REdis Serialization Protocol (RESP) implementation as specified
    in <http://redis.io/topics/protocol>.
    .
    Most Redis commands are declared as a GADT which
    enables different interpretations such as
    <http://hackage.haskell.org/package/redis-io redis-io>.

extra-source-files:
    README.md
    CHANGELOG.md

source-repository head
    type:             git
    location:         git://gitlab.com/twittner/redis-resp.git

library
    default-language: Haskell2010
    hs-source-dirs:   src
    ghc-options:      -Wall -O2 -fwarn-tabs -funbox-strict-fields

    exposed-modules:
        Data.Redis
        Data.Redis.Resp
        Data.Redis.Command

    build-depends:
        attoparsec            >= 0.11
      , base                  >= 4.9    && < 5
      , bytestring            >= 0.10.4
      , bytestring-conversion >= 0.2
      , containers            >= 0.5
      , double-conversion     >= 2.0
      , dlist                 >= 0.7
      , operational           >= 0.2
      , semigroups            >= 0.15
      , split                 >= 0.2
      , transformers          >= 0.3