diff --git a/Cargo.toml b/Cargo.toml index 0957fbe..d080d73 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qadapt" -version = "0.1.0" +version = "0.2.0" authors = ["Bradlee Speice "] description = "The Quick And Dirty Allocation Profiling Tool" license = "Apache-2.0" diff --git a/README.md b/README.md new file mode 100644 index 0000000..6a1d782 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +The Quick And Dirty Allocation Profiling Tool +============================================= + +A simple attempt at a `#[no_std]` compatible allocator that can track +allocations on a per-thread basis, for the purpose of guaranteeing that +performance-critical code doesn't trigger an allocation while running. + +The current state has all the infrastructure in place, but the tests are a bit +flaky. As such, this crate likely won't see much further development; if you +are interested in claiming the qadapt name, please reach out to the author +at [bradlee@speice.io](mailto:bradlee@speice.io).