Go to file
Bradlee Speice a1ee8934b4 Fix up the clippy warnings 2018-12-06 22:14:43 -05:00
examples Fix up the clippy warnings 2018-12-06 22:14:43 -05:00
qadapt-macro More edition fixing 2018-12-06 22:12:45 -05:00
src Fix up the clippy warnings 2018-12-06 22:14:43 -05:00
tests Fix up the clippy warnings 2018-12-06 22:14:43 -05:00
.gitignore Use new CI template 2018-12-02 22:42:29 -05:00
.travis.yml Hopefully fix the release process 2018-12-03 23:49:30 -05:00
CHANGELOG.md Use new CI template 2018-12-02 22:42:29 -05:00
CONTRIBUTING.md Use new CI template 2018-12-02 22:42:29 -05:00
CONTRIBUTORS.md Use new CI template 2018-12-02 22:42:29 -05:00
Cargo.toml Actually upgrade the edition 2018-12-06 22:11:03 -05:00
LICENSE Use new CI template 2018-12-02 22:42:29 -05:00
Makefile Use new CI template 2018-12-02 22:42:29 -05:00
README.md Fix appveyor badge 2018-12-02 22:48:46 -05:00
appveyor.yml Disable some appveyor builds 2018-12-03 23:04:15 -05:00
rustfmt.toml Use new CI template 2018-12-02 22:42:29 -05:00

README.md

qadapt

crates.io docs.rs codecov travisci appveyor


The Quick And Dirty Allocation Profiling Tool

This allocator is a helper for writing high-performance code that is allocation/drop free; for functions annotated with #[allocate_panic], QADAPT will detect when allocations/drops happen during their execution (and execution of any functions they call) and throw a thread panic if this occurs. QADAPT-related code is stripped out during release builds, so no worries about random allocations crashing in production.

Currently this crate is Nightly-only, but will work once const fn is in Stable.

Please also take a look at qadapt-macro for some helper macros to make working with QADAPT a bit easier.