packages feed

hlrdb-0.2.0.1: hlrdb.cabal

name:                hlrdb
version:             0.2.0.1
synopsis:            High-level Redis Database
description:         A library for type-driven interaction with Redis
license:             MIT
license-file:        LICENSE
author:              Identical Snowflake
maintainer:          identicalsnowflake@protonmail.com
category:            Database
build-type:          Simple
cabal-version:       2.0
homepage:            https://github.com/identicalsnowflake/hlrdb
bug-reports:         https://github.com/identicalsnowflake/hlrdb/issues

source-repository head
  type:     git
  location: https://github.com/identicalsnowflake/hlrdb

library
  exposed-modules: HLRDB
  build-depends:
      base >= 4.9 && < 5.0
    , base64-bytestring ^>= 1.0.0.1
    , bytestring ^>= 0.10.8.1
    , cryptonite (>= 0.24 && < 0.25) || ^>= 0.25
    , hashable ^>= 1.2.6.1
    , hedis ^>= 0.10.1
    , hlrdb-core ^>= 0.1.1
    , memory ^>= 0.14.8
    , random ^>= 1.1
    , store ^>= 0.5.0
    , time (>=1.6 && <1.9.1) || ^>= 1.9.1
    , unordered-containers ^>= 0.2.8.0
  hs-source-dirs:      src
  default-language:    Haskell2010
  default-extensions:
      BangPatterns
    , DataKinds
    , DeriveGeneric
    , DeriveTraversable
    , GADTs
    , GeneralizedNewtypeDeriving
    , LambdaCase
    , OverloadedStrings
    , RankNTypes
    , ScopedTypeVariables
    , TemplateHaskell
    , TypeOperators

  ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -fwarn-tabs