Skip to content

Commit

Permalink
Add deps for native epoll/kqueue (#1302)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlar authored Jun 13, 2022
1 parent eda9e2b commit 15c32be
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,14 @@ object Dependencies {

val netty =
Seq(
"netty-codec-http",
"netty-transport-native-epoll",
"netty-transport-native-kqueue",
).map { name =>
"io.netty" % name % NettyVersion
}
"io.netty" % "netty-codec-http" % NettyVersion,
"io.netty" % "netty-transport-native-epoll" % NettyVersion,
"io.netty" % "netty-transport-native-epoll" % NettyVersion % Runtime classifier "linux-x86_64",
"io.netty" % "netty-transport-native-epoll" % NettyVersion % Runtime classifier "linux-aarch_64",
"io.netty" % "netty-transport-native-kqueue" % NettyVersion,
"io.netty" % "netty-transport-native-kqueue" % NettyVersion % Runtime classifier "osx-x86_64",
"io.netty" % "netty-transport-native-kqueue" % NettyVersion % Runtime classifier "osx-aarch_64",
)

val `netty-incubator` =
"io.netty.incubator" % "netty-incubator-transport-native-io_uring" % NettyIncubatorVersion classifier "linux-x86_64"
Expand Down

0 comments on commit 15c32be

Please sign in to comment.