@@ -49,11 +49,10 @@ def crossPlugin(
49
49
x : sbt.librarymanagement.ModuleID
50
50
) = compilerPlugin(x.cross(CrossVersion .full))
51
51
52
- val addCompilerPlugins = libraryDependencies ++= {
52
+ val addCompilerPlugins = libraryDependencies ++=
53
53
List (
54
54
crossPlugin(" org.polyvariant" % " better-tostring" % " 0.3.17" )
55
55
)
56
- }
57
56
58
57
val commonSettings = Seq (
59
58
scalacOptions -= " -Xfatal-warnings" ,
@@ -63,9 +62,9 @@ val commonSettings = Seq(
63
62
// "2000"
64
63
),
65
64
libraryDependencies ++= Seq (
66
- " org.typelevel" %%% " cats-effect" % " 3.5.2 " ,
67
- " org.scalameta" %%% " munit" % " 1.0.0-M10 " % Test ,
68
- " org.typelevel" %%% " munit-cats-effect" % " 2.0.0-M3 " % Test
65
+ " org.typelevel" %%% " cats-effect" % " 3.5.7 " ,
66
+ " org.scalameta" %%% " munit" % " 1.0.0" % Test ,
67
+ " org.typelevel" %%% " munit-cats-effect" % " 2.0.0" % Test
69
68
),
70
69
addCompilerPlugins,
71
70
Compile / doc / sources := Nil
@@ -123,14 +122,14 @@ val app = crossProject(JVMPlatform, NativePlatform)
123
122
.settings(
124
123
libraryDependencies ++= Seq (
125
124
" com.disneystreaming.smithy4s" %%% " smithy4s-http4s" % smithy4sVersion.value,
126
- " org.typelevel" %%% " cats-mtl" % " 1.3.1 " ,
125
+ " org.typelevel" %%% " cats-mtl" % " 1.4.0 " ,
127
126
" com.monovore" %%% " decline-effect" % " 2.4.1" ,
128
- " org.http4s" %%% " http4s-dsl" % " 0.23.23 " ,
129
- " org.http4s" %%% " http4s-ember-server" % " 0.23.23 " ,
130
- " org.http4s" %%% " http4s-ember-client" % " 0.23.23 " ,
131
- " org.http4s" %%% " http4s-circe" % " 0.23.23 " ,
132
- " io.circe" %%% " circe-parser" % " 0.14.6 " ,
133
- " org.typelevel" %%% " log4cats-noop" % " 2.6 .0" ,
127
+ " org.http4s" %%% " http4s-dsl" % " 0.23.30 " ,
128
+ " org.http4s" %%% " http4s-ember-server" % " 0.23.30 " ,
129
+ " org.http4s" %%% " http4s-ember-client" % " 0.23.30 " ,
130
+ " org.http4s" %%% " http4s-circe" % " 0.23.30 " ,
131
+ " io.circe" %%% " circe-parser" % " 0.14.8 " ,
132
+ " org.typelevel" %%% " log4cats-noop" % " 2.7 .0" ,
134
133
" org.polyvariant" %%% " colorize" % " 0.3.2"
135
134
// waiting
136
135
// "dev.optics" %%% "monocle-core" % "3.1.0"
@@ -147,7 +146,7 @@ val app = crossProject(JVMPlatform, NativePlatform)
147
146
.jvmConfigure(
148
147
_.settings(
149
148
libraryDependencies ++= Seq (
150
- " ch.qos.logback" % " logback-classic" % " 1.2.11 "
149
+ " ch.qos.logback" % " logback-classic" % " 1.2.13 "
151
150
)
152
151
).enablePlugins(JavaAppPackaging )
153
152
)
0 commit comments