├── .github └── workflows │ └── ci.yml ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── src └── lib.rs └── tests └── coredump.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-e-s-o/coredump/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-e-s-o/coredump/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-e-s-o/coredump/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-e-s-o/coredump/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-e-s-o/coredump/HEAD/README.md -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-e-s-o/coredump/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/coredump.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-e-s-o/coredump/HEAD/tests/coredump.rs --------------------------------------------------------------------------------