From 4405f7aecb8ed68f8228aaf8c33994839e70b0d0 Mon Sep 17 00:00:00 2001 From: Maia <66437537+maia-s@users.noreply.github.com> Date: Sun, 14 Jan 2024 14:50:49 +0100 Subject: [PATCH] metadata --- anyhash-macros/Cargo.toml | 4 +++- anyhash/Cargo.toml | 8 ++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/anyhash-macros/Cargo.toml b/anyhash-macros/Cargo.toml index d95bc2a..9c177fc 100644 --- a/anyhash-macros/Cargo.toml +++ b/anyhash-macros/Cargo.toml @@ -2,8 +2,10 @@ name = "anyhash-macros" version = "0.1.0" edition = "2021" -authors = ["Maia <66437537+maia-s@users.noreply.github.com>"] +authors = ["Maia S. R."] license = "MIT OR Apache-2.0 OR Zlib" +description = "Proc macros for the anyhash crate" +repository = "https://github.com/maia-s/anyhash" [lib] proc-macro = true diff --git a/anyhash/Cargo.toml b/anyhash/Cargo.toml index 0e5ae5b..9e70b2a 100644 --- a/anyhash/Cargo.toml +++ b/anyhash/Cargo.toml @@ -2,8 +2,12 @@ name = "anyhash" version = "0.1.0" edition = "2021" -authors = ["Maia <66437537+maia-s@users.noreply.github.com>"] +authors = ["Maia S. R."] license = "MIT OR Apache-2.0 OR Zlib" +description = "Traits and utilities for making hashes of any type" +repository = "https://github.com/maia-s/anyhash" +keywords = ["hash", "hashing", "generic"] +categories = ["algorithms", "no-std", "no-std::no-alloc"] [features] std = ["alloc"] @@ -22,7 +26,7 @@ spooky = ["bytemuck"] xxh64 = ["bytemuck"] [dependencies] -anyhash-macros = { path = "../anyhash-macros" } +anyhash-macros = { version = "0.1", path = "../anyhash-macros" } bnum = { version = "0.10", optional = true } bytemuck = { version = "1.14", features = ["min_const_generics"], optional = true }