packages feed

hedis-config-0.0.2: hedis-config.cabal

name:                hedis-config
version:             0.0.2
synopsis:            Easy trivial configuration for Redis
description: Datatype to parse redis connection settings from file like
  .
  > host: localhost                 # host name or address
  > port: 6379                      # you can specify either port
  > # socket: /run/redis.socket     # or unix socket path
  > # service: redis                # or service name
  > password: "pass"                # if not specified then no password used
  > database: 0                     # database number to connect to
  > max-connections: 5              # max connections in pool
  > max-idle-time: 30               # keep connection open for 30 seconds


license:             BSD3
license-file:        LICENSE
author:              Aleksey Uimanov
maintainer:          s9gf4ult@gmail.com
category:            Database
build-type:          Simple
cabal-version:       >=1.10

extra-source-files: CHANGELOG.md
                  , README.md
                  , examples/redis.yml

homepage: https://bitbucket.org/s9gf4ult/hedis-config
source-repository head
  type: git
  location: git@bitbucket.org:s9gf4ult/hedis-config.git

library
  default-language:    Haskell2010
  hs-source-dirs:      src
  default-extensions:  OverloadedStrings
                     , RecordWildCards

  build-depends:       base         >= 4.6   && < 5
                     , aeson
                     , hedis        >= 0.6
                     , scientific
                     , text
                     , time

  exposed-modules:     Database.Redis.Config

  ghc-options: -Wall