One part of the json I'm receiving has a section like this:
"releases": {
"0.1": [
{
...
}
"0.2": [
{
...
}
There are an arbitrary number of "0.x" keys, each containing a similar list. Right now I just use serde Value, but I'd like to get it as a type. Should I create a custom deserializer for this or is there any easier way?