├── .github └── workflows │ └── CI.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples └── additional_fields.rs ├── http-api-problem-derive ├── Cargo.toml ├── README.md └── src │ └── lib.rs └── src ├── api_error.rs ├── lib.rs └── test.rs /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chridou/http-api-problem/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | **/*.rs.bk 3 | Cargo.lock 4 | .vscode 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chridou/http-api-problem/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chridou/http-api-problem/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chridou/http-api-problem/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chridou/http-api-problem/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chridou/http-api-problem/HEAD/README.md -------------------------------------------------------------------------------- /examples/additional_fields.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chridou/http-api-problem/HEAD/examples/additional_fields.rs -------------------------------------------------------------------------------- /http-api-problem-derive/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chridou/http-api-problem/HEAD/http-api-problem-derive/Cargo.toml -------------------------------------------------------------------------------- /http-api-problem-derive/README.md: -------------------------------------------------------------------------------- 1 | Support crate for HTTP-API-PROBLEM -------------------------------------------------------------------------------- /http-api-problem-derive/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chridou/http-api-problem/HEAD/http-api-problem-derive/src/lib.rs -------------------------------------------------------------------------------- /src/api_error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chridou/http-api-problem/HEAD/src/api_error.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chridou/http-api-problem/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chridou/http-api-problem/HEAD/src/test.rs --------------------------------------------------------------------------------