I lied, the cleanup is never done

pull/3/head
Bradlee Speice 2018-11-11 22:37:00 -05:00
parent 901e7941a2
commit 76091906cc
3 changed files with 23 additions and 0 deletions

View File

@ -1,5 +1,19 @@
[package]
name = "qadapt-macro"
version = "0.3.0"
authors = ["Bradlee Speice <bradlee@speice.io>"]
description = "The Quick And Dirty Allocation Profiling Tool - Support Macros"
license = "Apache-2.0"
readme = "README.md"
categories = [
"development-tools",
"development-tools::debugging",
"development-tools::profiling",
"development-tools::testing",
"memory-management"
]
repository = "https://github.com/bspeice/qadapt.git"
name = "qadapt-macro"
version = "0.1.0"
authors = ["Bradlee Speice <bradlee@speice.io>"]

6
qadapt-macro/README.md Normal file
View File

@ -0,0 +1,6 @@
# QADAPT - Helper macros
Helper macros to use with the QADAPT allocator system
This crate is intended for managing the QADAPT allocator,
and is unusable on its own.

View File

@ -11,6 +11,9 @@
//! so the attribute is safe to leave everywhere.
//!
//! Currently this crate is Nightly-only, but will work once `const fn` is in Stable.
//!
//! Please also take a look at [qadapt-macro](https://github.com/bspeice/qadapt/tree/master/qadapt-macro)
//! for some helper macros to make working with QADAPT a bit easier.
#![deny(missing_docs)]
extern crate libc;
extern crate qadapt_macro;