packages feed

hlrdb-core-0.1.6.2: hlrdb-core.cabal

name:                hlrdb-core
version:             0.1.6.2
synopsis:            High-level Redis Database Core API
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-core
bug-reports:         https://github.com/identicalsnowflake/hlrdb-core/issues
extra-source-files: CHANGELOG.md

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

library
  exposed-modules:
      HLRDB.Core
    , HLRDB.Primitives.Aggregate
    , HLRDB.Primitives.Redis
    , HLRDB.Structures.Basic
    , HLRDB.Structures.HSet
    , HLRDB.Structures.List
    , HLRDB.Structures.Set
    , HLRDB.Structures.SSet
    , HLRDB.Internal
  build-depends: base >= 4.9 && < 5.0
               , bytestring >= 0.10.8.2 && < 0.12
               , hashable >= 1.2.6.1 && < 1.4
               , hedis >= 0.14 && < 0.15
               , lens >= 4.16 && < 5.1
               , mtl ^>= 2.2.2
               , profunctors >= 5.2.2 && < 5.7
               , random >= 1.1 && < 1.3
               , time >=1.6 && <1.12
               , unordered-containers >= 0.2.8.0 && < 0.2.14
  hs-source-dirs:      src
  default-language:    Haskell2010
  default-extensions:
      BangPatterns
    , DataKinds
    , DeriveGeneric
    , DeriveTraversable
    , FlexibleContexts
    , GADTs
    , LambdaCase
    , OverloadedStrings
    , RankNTypes
    , ScopedTypeVariables
    , TypeOperators

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