zake
11/05/2020, 4:06 AMJsonConfiguration
was deprecated and that if I originally had code like
val json = Json(JsonConfiguration.Stable)
val deserialized = json.parse(...)
I get the same functionality if I do
val deserialized = Json.decodeFromString(...)
neat!