scala 标量-json-rpc:值漂亮不是io.circe.打印机的成员

qvk1mo1f  于 2023-01-13  发布在  Scala
关注(0)|答案(1)|浏览(115)

我最近将庞大的项目从Scala 2.12更新到2.13,并使用
https://github.com/shogowada/scala-json-rpc至:
https://github.com/nawforce/scala-json-rpc
有几个方法- jsonRPCServer.{bindApi,receive}和jsonRPCClient.createAPI -开始给我这个错误:value pretty is not a member of io.circe.Printer
它没有出现在以前版本的库中。我试着检查源代码,但没有找到有问题的调用。你们中的任何人有类似的问题吗?

2g32fytz

2g32fytz1#

查看Scaladex和两个软件包的circe依赖关系(Scaledex for the originalScaladex for the fork you are using),它已从0.8.0升级到0.13.0。查看此提交,似乎pretty已在0.12.0中弃用(从你的帖子来看,可能是0.13.0),并替换为printWith,这可能是你想要使用的。

相关问题