From b03204058cd7fcb0964bb7e1a87d2f4245ed6930 Mon Sep 17 00:00:00 2001 From: Davidson Souza Date: Wed, 8 Jul 2026 19:01:18 -0300 Subject: [PATCH] fix: use correct cargo category crates.io is complaining about cryptography::Cryptocurrencies because it is case-sensitive, and currently the 'C' in 'Cryptocurrencies' is captilized where it shouldn't. This commit fixes that --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ba90e62..d5059ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "rustreexo" version = "0.6.0" description = "A Rust implementation of Utreexo" keywords = ["accumulator", "bitcoin", "utreexo"] -categories = ["algorithms", "cryptography::Cryptocurrencies", "no-std"] +categories = ["algorithms", "cryptography::cryptocurrencies", "no-std"] authors = ["Calvin Kim ", "Davidson Souza "] repository = "https://github.com/mit-dci/rustreexo" license = "MIT OR Apache-2.0"