├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples ├── ad-hoc.rs ├── heap-testing.rs └── heap.rs ├── src └── lib.rs └── tests ├── ad-hoc-panics.rs ├── ad-hoc.rs ├── assert-failure.rs ├── assert_eq-failure.rs ├── assert_ne-failure.rs ├── heap-panics.rs └── heap.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnethercote/dhat-rs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnethercote/dhat-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnethercote/dhat-rs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnethercote/dhat-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnethercote/dhat-rs/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnethercote/dhat-rs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnethercote/dhat-rs/HEAD/README.md -------------------------------------------------------------------------------- /examples/ad-hoc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnethercote/dhat-rs/HEAD/examples/ad-hoc.rs -------------------------------------------------------------------------------- /examples/heap-testing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnethercote/dhat-rs/HEAD/examples/heap-testing.rs -------------------------------------------------------------------------------- /examples/heap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnethercote/dhat-rs/HEAD/examples/heap.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnethercote/dhat-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/ad-hoc-panics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnethercote/dhat-rs/HEAD/tests/ad-hoc-panics.rs -------------------------------------------------------------------------------- /tests/ad-hoc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnethercote/dhat-rs/HEAD/tests/ad-hoc.rs -------------------------------------------------------------------------------- /tests/assert-failure.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnethercote/dhat-rs/HEAD/tests/assert-failure.rs -------------------------------------------------------------------------------- /tests/assert_eq-failure.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnethercote/dhat-rs/HEAD/tests/assert_eq-failure.rs -------------------------------------------------------------------------------- /tests/assert_ne-failure.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnethercote/dhat-rs/HEAD/tests/assert_ne-failure.rs -------------------------------------------------------------------------------- /tests/heap-panics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnethercote/dhat-rs/HEAD/tests/heap-panics.rs -------------------------------------------------------------------------------- /tests/heap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnethercote/dhat-rs/HEAD/tests/heap.rs --------------------------------------------------------------------------------