Skip to content

Commit f997d20

Browse files
committed
fix(build): limit keywords to five for publishing
`cargo publish` was failing with a "400 Bad Request" error because crates.io enforces a maximum of 5 keywords per crate. The project was previously configured with 6. This commit removes the "structure" keyword from `Cargo.toml` to meet this requirement, reducing the total count to 5 and allowing the crate to be published successfully.
1 parent 2547031 commit f997d20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT"
77
authors = ["author@romelium.cc"]
88
repository = "https://github.com/romelium/strux"
99
readme = "README.md"
10-
keywords = ["markdown", "cli", "generator", "filesystem", "scaffold", "structure"]
10+
keywords = ["markdown", "cli", "generator", "filesystem", "scaffold"]
1111
categories = ["command-line-utilities", "filesystem", "development-tools"]
1212

1313
[dependencies]

0 commit comments

Comments
 (0)