From b98ec6e65459ea9f21ca4e69475e680d5aad25b0 Mon Sep 17 00:00:00 2001 From: Martin Robinson Date: Wed, 10 Apr 2024 10:43:44 +0200 Subject: [PATCH] Make Cargo.toml respect crates.io keyword limit (#251) There is a 5 keyword limit. --- harfbuzz-sys/Cargo.toml | 2 +- harfbuzz-traits/Cargo.toml | 2 +- harfbuzz/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/harfbuzz-sys/Cargo.toml b/harfbuzz-sys/Cargo.toml index 8e9803d4..3ffe3ca7 100644 --- a/harfbuzz-sys/Cargo.toml +++ b/harfbuzz-sys/Cargo.toml @@ -10,7 +10,7 @@ readme = "README.md" description = "Rust bindings to the HarfBuzz text shaping engine" repository = "https://github.com/servo/rust-harfbuzz" documentation = "https://docs.rs/harfbuzz-sys/" -keywords = ["opentype", "font", "text", "layout", "unicode", "shaping"] +keywords = ["opentype", "font", "text", "unicode", "shaping"] categories = ["external-ffi-bindings", "internationalization", "text-processing"] exclude = [ diff --git a/harfbuzz-traits/Cargo.toml b/harfbuzz-traits/Cargo.toml index abb80e43..8c86bb03 100644 --- a/harfbuzz-traits/Cargo.toml +++ b/harfbuzz-traits/Cargo.toml @@ -10,7 +10,7 @@ readme = "README.md" description = "Rust Traits for the HarfBuzz text shaping engine" repository = "https://github.com/servo/rust-harfbuzz" documentation = "https://docs.rs/harfbuzz/" -keywords = ["opentype", "font", "text", "layout", "unicode", "shaping"] +keywords = ["opentype", "font", "text", "unicode", "shaping"] categories = ["text-processing"] [features] diff --git a/harfbuzz/Cargo.toml b/harfbuzz/Cargo.toml index 91101f04..553653a4 100644 --- a/harfbuzz/Cargo.toml +++ b/harfbuzz/Cargo.toml @@ -10,7 +10,7 @@ readme = "README.md" description = "Rust bindings to the HarfBuzz text shaping engine" repository = "https://github.com/servo/rust-harfbuzz" documentation = "https://docs.rs/harfbuzz/" -keywords = ["opentype", "font", "text", "layout", "unicode", "shaping"] +keywords = ["opentype", "font", "text", "unicode", "shaping"] categories = ["text-processing"] [dependencies.harfbuzz-sys]