Skip to main content

Installation

To get started with sbt, add the following to your build.sbt file:

libraryDependencies ++= Seq(
// core components
"com.anymindgroup" %% "zio-pubsub" % "0.2.4",

// to use the implementation with Google's Java library
"com.anymindgroup" %% "zio-pubsub-google" % "0.2.4",

// include for testing support
"com.anymindgroup" %% "zio-pubsub-testkit" % "0.2.4" % Test
)