Format serde errors in a way to make it obvious where the error in the source file was.
Currently serdeyaml and serdejson are supported. Extending the library to more data types should be relativly easy as long as the errors emit a line and column.
Usage Example:
```rust use formatserdeerror::SerdeError;
struct Config {
values: Vec
fn parseconfig() -> Result
let config = serdeyaml::fromstr::
Ok(config) } ```
The output will be:
Error:
| values:
| - 'first'
| - 'second'
4 | - third:
| ^ values[2]: invalid type: map, expected a string at line 4 column 10