├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src ├── de.rs ├── lib.rs ├── path.rs ├── ser.rs └── wrap.rs └── tests ├── deserialize.rs └── serialize.rs /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: dtolnay 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/path-to-error/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/path-to-error/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/path-to-error/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/path-to-error/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/path-to-error/HEAD/README.md -------------------------------------------------------------------------------- /src/de.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/path-to-error/HEAD/src/de.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/path-to-error/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/path-to-error/HEAD/src/path.rs -------------------------------------------------------------------------------- /src/ser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/path-to-error/HEAD/src/ser.rs -------------------------------------------------------------------------------- /src/wrap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/path-to-error/HEAD/src/wrap.rs -------------------------------------------------------------------------------- /tests/deserialize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/path-to-error/HEAD/tests/deserialize.rs -------------------------------------------------------------------------------- /tests/serialize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/path-to-error/HEAD/tests/serialize.rs --------------------------------------------------------------------------------