circe-yaml icon indicating copy to clipboard operation
circe-yaml copied to clipboard

YAML parser for circe using SnakeYAML

Results 72 circe-yaml issues
Sort by recently updated
recently updated
newest added

## About this PR 📦 Updates * [org.scala-native:auxlib](https://github.com/scala-native/scala-native) * [org.scala-native:clib](https://github.com/scala-native/scala-native) * [org.scala-native:javalib](https://github.com/scala-native/scala-native) * [org.scala-native:nativelib](https://github.com/scala-native/scala-native) * [org.scala-native:nscplugin](https://github.com/scala-native/scala-native) * [org.scala-native:posixlib](https://github.com/scala-native/scala-native) * [org.scala-native:sbt-scala-native](https://github.com/scala-native/scala-native) * [org.scala-native:test-interface](https://github.com/scala-native/scala-native) * [org.scala-native:windowslib](https://github.com/scala-native/scala-native) from `0.5.4` to `0.5.5` 📜 [GitHub...

```scala import io.circe.generic.semiauto._ import io.circe.syntax._ import io.circe._ import io.circe.yaml._ import io.circe.yaml.scalayaml.Printer case class V(string: String) object V { implicit val vEncoder: Encoder[V] = deriveEncoder } val v = V("hello world")...