Skip to content

Commit

Permalink
Make Cargo.toml respect crates.io keyword limit (#251)
Browse files Browse the repository at this point in the history
There is a 5 keyword limit.
  • Loading branch information
mrobinson committed Apr 10, 2024
1 parent 8b6319b commit b98ec6e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion harfbuzz-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion harfbuzz-traits/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
2 changes: 1 addition & 1 deletion harfbuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit b98ec6e

Please sign in to comment.