pipes-rt 0.4.2 → 0.5.0
raw patch · 2 files changed
+7/−6 lines, 2 filesdep ~basedep ~time
Dependency ranges changed: base, time
Files
- README.md +1/−1
- pipes-rt.cabal +6/−5
README.md view
@@ -1,7 +1,7 @@ pipes-rt ======== -[](http://travis-ci.org/ImAlsoGreg/pipes-rt)+[](https://travis-ci.org/imalsogreg/pipes-rt.svg?branch=master) A few pipes to yield values at a steady rate, as a poisson process, or according to the values themselves
pipes-rt.cabal view
@@ -1,5 +1,5 @@ Name: pipes-rt-Version: 0.4.2+Version: 0.5.0 License: BSD3 License-File: LICENSE Copyright: (c) 2013 Greg Hale@@ -12,6 +12,7 @@ Build-Type: Simple Synopsis: A few pipes to control the timing of yields Cabal-Version: >=1.8+tested-with: GHC==7.4.1, GHC==7.4.2, GHC==7.6.2, GHC==7.6.3, GHC==7.8.4, GHC==7.10.1 Extra-Source-Files: README.md Description: Use this library to yield values downstream according to different timing rules. For example, use the relTimeCat pipe, and your data will be yielded according to their timestamps. Or use poissonCat to yield values with poisson timing.@@ -23,10 +24,10 @@ Library Hs-Source-Dirs: lib Build-Depends:- base (>= 4.2 && < 4.8)- ,pipes (>= 4 && < 4.2)- ,time (>= 1.4 && < 1.5)- ,mwc-random (>= 0.13 && < 0.14)+ base >= 4.2 && < 4.9+ ,pipes >= 4 && < 4.2+ ,time >= 1.4 && < 1.6+ ,mwc-random >= 0.13 && < 0.14 Exposed-Modules: Pipes.RealTime