From 7ee98886dfcaad92d72d96c868603d2a8bd47149 Mon Sep 17 00:00:00 2001 From: Nilstrieb <48135649+Nilstrieb@users.noreply.github.com> Date: Mon, 4 Apr 2022 20:04:37 +0200 Subject: [PATCH] add metadata --- Cargo.toml | 10 +++++++++- README.md | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 68a601a..c36a4cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,15 @@ [package] -name = "ptr-stuff" +name = "ptr" version = "0.1.0" edition = "2021" +description = "Stuffing things into pointers." +readme = "./README.md" +homepage = "https://github.com/Nilstrieb/stuff" +repository = "https://github.com/Nilstrieb/stuff" +license = "MIT" +keywords = ["unsafe", "pointer", "bitpacking", "provenance", "bitstuffing", "tagging", "ptr"] +categories = ["data-structures", "memory-management", "no-std"] +include = ["Cargo.toml", "LICENSE", "src"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/README.md b/README.md index 7936485..6017ff9 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# ptr-stuff +# stuff A crate for stuffing things into a pointer.