name: redis-hs version: 0.0.7 author: Will Langstroth maintainer: Will Langstroth license: MIT license-file: LICENSE homepage: http://github.com/wlangstroth/redis-hs synopsis: A simple Redis library for Haskell description: This package provides access to Redis stores using the Data.ByteString.UTF8 ByteString, for consistent handling of UTF8 encoding. It is a developer pre- release, and so lacks many of the features of the existing `redis` package (like a monad wrapper, state management, and custom concurrency management) but for light use, this library makes using Redis very straightforward. . The feature set is incomplete, and version 1.0.0 will be tagged only when the library has full command coverage, reasonable test coverage, and solid documentation. . The source code is available on GitHub . category: Database build-type: Simple cabal-version: >= 1.6 extra-source-files: haddock.sh, LICENSE, CONTRIBUTORS, README.md, test/redis-tests.cabal, test/suite/TestSuite.hs, test/suite/Database/Redis/Tests.hs library hs-source-dirs: src exposed-modules: Database.Redis, Database.Redis.Internal, Database.Redis.Connection, Database.Redis.General, Database.Redis.String, Database.Redis.List, Database.Redis.Set build-depends: base == 4.*, bytestring >= 0.9, mtl == 2.*, network >= 2.2.3, utf8-string >= 0.3.5 source-repository head type: git location: http://github.com/wlangstroth/snap-core.git