├── .gitattributes ├── .github └── workflows │ ├── rust.yml │ └── rust_audit.yml ├── .gitignore ├── .rustfmt.toml ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── README.md ├── bacon.toml ├── examples ├── custom.rs ├── custom_tabs.rs ├── serde_json.rs ├── serde_json_long.rs ├── serde_yaml.rs ├── serde_yaml_long.rs └── toml.rs ├── resources ├── config.json ├── config.toml ├── config.yaml ├── config_pretty.json ├── example_output │ ├── custom.png │ ├── custom_tabs.png │ ├── serde_json.png │ ├── serde_json_long.png │ ├── serde_yaml.png │ ├── serde_yaml_long.png │ └── toml.png └── generate_example_pngs └── src ├── control.rs ├── lib.rs └── test ├── config.rs └── mod.rs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.github/workflows/rust_audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/.github/workflows/rust_audit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .vim 3 | -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/.rustfmt.toml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/README.md -------------------------------------------------------------------------------- /bacon.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/bacon.toml -------------------------------------------------------------------------------- /examples/custom.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/examples/custom.rs -------------------------------------------------------------------------------- /examples/custom_tabs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/examples/custom_tabs.rs -------------------------------------------------------------------------------- /examples/serde_json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/examples/serde_json.rs -------------------------------------------------------------------------------- /examples/serde_json_long.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/examples/serde_json_long.rs -------------------------------------------------------------------------------- /examples/serde_yaml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/examples/serde_yaml.rs -------------------------------------------------------------------------------- /examples/serde_yaml_long.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/examples/serde_yaml_long.rs -------------------------------------------------------------------------------- /examples/toml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/examples/toml.rs -------------------------------------------------------------------------------- /resources/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/resources/config.json -------------------------------------------------------------------------------- /resources/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/resources/config.toml -------------------------------------------------------------------------------- /resources/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/resources/config.yaml -------------------------------------------------------------------------------- /resources/config_pretty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/resources/config_pretty.json -------------------------------------------------------------------------------- /resources/example_output/custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/resources/example_output/custom.png -------------------------------------------------------------------------------- /resources/example_output/custom_tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/resources/example_output/custom_tabs.png -------------------------------------------------------------------------------- /resources/example_output/serde_json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/resources/example_output/serde_json.png -------------------------------------------------------------------------------- /resources/example_output/serde_json_long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/resources/example_output/serde_json_long.png -------------------------------------------------------------------------------- /resources/example_output/serde_yaml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/resources/example_output/serde_yaml.png -------------------------------------------------------------------------------- /resources/example_output/serde_yaml_long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/resources/example_output/serde_yaml_long.png -------------------------------------------------------------------------------- /resources/example_output/toml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/resources/example_output/toml.png -------------------------------------------------------------------------------- /resources/generate_example_pngs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/resources/generate_example_pngs -------------------------------------------------------------------------------- /src/control.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/src/control.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/test/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/src/test/config.rs -------------------------------------------------------------------------------- /src/test/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderThaller/format_serde_error/HEAD/src/test/mod.rs --------------------------------------------------------------------------------