1- asyncstreams [ ![ Release ] ( https://jitpack.io/v/danslapman/asyncstreams.svg )] ( https://jitpack.io/#danslapman/asyncstreams ) [ ![ Download] ( https://api.bintray.com/packages/danslapman/maven/asyncstreams/images/download.svg ) ] ( https://bintray.com/danslapman/maven/asyncstreams/_latestVersion )
1+ asyncstreams [ ![ Download] ( https://api.bintray.com/packages/danslapman/maven/asyncstreams/images/download.svg ) ] ( https://bintray.com/danslapman/maven/asyncstreams/_latestVersion )
22=========
33
44asyncstreams is a monadic asynchronous stream library. It allows you to write stateful asynchronous algorithms
@@ -25,23 +25,18 @@ asyncstreams is tested to work with:
2525
2626Currently, asyncstreams' main branch uses scalaz's typeclasses. If Your projects uses cats
2727or have some other cats-based dependencies, You can use cats-based port, which have feature parity
28- with master, but is experimental for now.
28+ with master, but is experimental for now. I'm planning to migrate master to cats after cats 1.0.0 is released.
2929
30- asyncstreams' master branch is available via jitpack :
30+ asyncstreams is available via bintray :
3131
3232```
33- resolvers += "jitpack" at "https://jitpack.io"
33+ resolvers += Resolver.bintrayRepo("danslapman", "maven")
3434
35- libraryDependencies += "com.github.danslapman" %% "asyncstreams" % "0.5"
35+ //scalaz-based
36+ libraryDependencies += "danslapman" %% "asyncstreams" % "0.5"
37+
38+ //cats-based
39+ libraryDependencies += "danslapman" %% "asyncstreams" % "0.5-cats-rc1"
3640```
3741
38- cats-based release lives on bintray:
39-
40- ```
41- resolvers += Resolver.bintrayRepo("danslapman", "maven")
42-
43- libraryDependencies += "danslapman" %% "asyncstreams" % "0.5-cats-rc1"
44- ```
45-
46-
4742asyncstreams initially based on [ scala-async] ( https://github.com/iboltaev/scala-async ) ideas.
0 commit comments