hedis 0.6.2 → 0.6.3
raw patch · 2 files changed
+3/−3 lines, 2 filesdep ~attoparsec
Dependency ranges changed: attoparsec
Files
- hedis.cabal +2/−2
- test/Test.hs +1/−1
hedis.cabal view
@@ -1,5 +1,5 @@ name: hedis-version: 0.6.2+version: 0.6.3 synopsis: Client library for the Redis datastore: supports full command set, pipelining.@@ -86,7 +86,7 @@ ghc-options: -Wall ghc-prof-options: -auto-all exposed-modules: Database.Redis- build-depends: attoparsec == 0.10.*,+ build-depends: attoparsec >= 0.10, base == 4.*, BoundedChan == 1.0.*, bytestring >= 0.9 && < 0.11,
test/Test.hs view
@@ -70,7 +70,7 @@ testConstantSpacePipelining = testCase "constant-space pipelining" $ do -- This testcase should not exceed the maximum heap size, as set in -- the run-test.sh script.- replicateM_ 1000000 ping+ replicateM_ 100000 ping -- If the program didn't crash, pipelining takes constant memory. assert True