snaplet-redis 0.1 → 0.1.0.1
raw patch · 2 files changed
+13/−10 lines, 2 filesdep ~hedisdep ~snap
Dependency ranges changed: hedis, snap
Files
- snaplet-redis.cabal +12/−10
- src/Snap/Snaplet/RedisDB.hs +1/−0
snaplet-redis.cabal view
@@ -1,19 +1,21 @@ Name: snaplet-redis-Version: 0.1+Version: 0.1.0.1 Synopsis: Redis support for Snap Framework Description: This package provides a snaplet which wraps Redis interface as implemented by Hedis library. Inline documentation contains usage examples. Homepage: https://github.com/dzhus/snaplet-redis/-Bug-reports: https://github.com/dzhus/snaplet-redis/issues+Bug-reports: https://github.com/dzhus/snaplet-redis/issues/ License: BSD3 License-file: LICENSE Author: Dmitry Dzhus Maintainer: dima@dzhus.org Category: Web+stability: stable Build-type: Simple Cabal-version: >=1.6+Tested-with: GHC == 7.4.1 source-repository head type: git@@ -26,12 +28,12 @@ Exposed-modules: Snap.Snaplet.RedisDB Build-depends:- base >= 4 && < 5,- data-lens >= 2.0.1 && < 2.1,- data-lens-template >= 2.1 && < 2.2,- hedis == 0.3.*,- mtl >= 2 && < 3,- snap == 0.7.*,- text == 0.11.*,- transformers == 0.2.*+ base >= 4 && < 5,+ data-lens >= 2.0.1 && < 2.1,+ data-lens-template >= 2.1 && < 2.2,+ hedis == 0.4.*,+ mtl >= 2 && < 3,+ snap == 0.8.*,+ text == 0.11.*,+ transformers == 0.2.*
src/Snap/Snaplet/RedisDB.hs view
@@ -38,6 +38,7 @@ makeLens ''RedisDB + ------------------------------------------------------------------------------ -- | Perform action using Redis connection from RedisDB snaplet pool -- (wrapper for 'Database.Redis.runRedis').