From 45786cc074721404530148c5d3459eeec184b576 Mon Sep 17 00:00:00 2001 From: ascender1729 Date: Sat, 30 May 2026 17:31:01 +0530 Subject: [PATCH] fix(crates): shorten keyword to satisfy crates.io <20-char limit crates.io rejects keywords >=20 chars: 'verifiable-credentials' (22) -> 'verifiable-creds' (16). This was the last publish blocker after the crates.io account email was verified. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1c89ab0..8c190b7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/VibeTensor/attestix-rs" homepage = "https://attestix.io" documentation = "https://docs.rs/attestix" readme = "README.md" -keywords = ["attestix", "verifiable-credentials", "ed25519", "did", "ucan"] +keywords = ["attestix", "verifiable-creds", "ed25519", "did", "ucan"] categories = ["cryptography", "authentication", "no-std::no-alloc", "wasm"] exclude = ["/.github", "/testdata"]