mirror of
https://github.com/bspeice/qadapt
synced 2024-11-21 21:38:10 -05:00
I lied, the cleanup is never done
This commit is contained in:
parent
901e7941a2
commit
76091906cc
@ -1,5 +1,19 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "qadapt-macro"
|
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"
|
version = "0.1.0"
|
||||||
authors = ["Bradlee Speice <bradlee@speice.io>"]
|
authors = ["Bradlee Speice <bradlee@speice.io>"]
|
||||||
|
|
||||||
|
6
qadapt-macro/README.md
Normal file
6
qadapt-macro/README.md
Normal 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.
|
@ -11,6 +11,9 @@
|
|||||||
//! so the attribute is safe to leave everywhere.
|
//! so the attribute is safe to leave everywhere.
|
||||||
//!
|
//!
|
||||||
//! Currently this crate is Nightly-only, but will work once `const fn` is in Stable.
|
//! 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)]
|
#![deny(missing_docs)]
|
||||||
extern crate libc;
|
extern crate libc;
|
||||||
extern crate qadapt_macro;
|
extern crate qadapt_macro;
|
||||||
|
Loading…
Reference in New Issue
Block a user