diff --git a/qadapt-macro/Cargo.toml b/qadapt-macro/Cargo.toml index 0342b5a..916f9d3 100644 --- a/qadapt-macro/Cargo.toml +++ b/qadapt-macro/Cargo.toml @@ -1,5 +1,19 @@ [package] name = "qadapt-macro" +version = "0.3.0" +authors = ["Bradlee Speice "] +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 "] diff --git a/qadapt-macro/README.md b/qadapt-macro/README.md new file mode 100644 index 0000000..424e993 --- /dev/null +++ b/qadapt-macro/README.md @@ -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. \ No newline at end of file diff --git a/src/lib.rs b/src/lib.rs index 31afcfe..219e0c6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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;