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.3.1",

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

// or to use the http implementation
// "com.anymindgroup" %% "zio-pubsub-http" % "0.3.1",

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