Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ lazy val grpcProtocol = project
"com.thesamet.scalapb" %% "scalapb-runtime" % scalapb.compiler.Version.scalapbVersion % "protobuf",
"com.thesamet.scalapb" %% "scalapb-runtime-grpc" % scalapb.compiler.Version.scalapbVersion,
"com.thesamet.scalapb.zio-grpc" %% "zio-grpc-core" % zioGrpcVersion,
"io.grpc" % "grpc-netty" % grpcNettyVersion
"io.grpc" % "grpc-netty" % grpcNettyVersion % Test
)
)

Expand All @@ -187,7 +187,7 @@ lazy val examples = project
"dev.zio" %% "zio-streams" % zioVersion
)
)
.dependsOn(manager, storageRedis, grpcProtocol, serializationKryo)
.dependsOn(manager, storageRedis, grpcProtocol % "compile->compile;test->test", serializationKryo)

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The examples project won't work without grpc-netty

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But also for people using Shardcake I don't really want them to care about it, so I think it's okay to ship with a default implementation.


lazy val benchmarks = project
.in(file("benchmarks"))
Expand Down