Skip to content

Commit

Permalink
chore: Fix crates.io category capitalization (#838)
Browse files Browse the repository at this point in the history
From the `cargo-release` log:
```
warning: the following are not valid category slugs and were ignored: Compilers.
Please see https://crates.io/category_slugs for the list of all category slugs. 
```

The category should be in
[lower-case](https://crates.io/category_slugs).
  • Loading branch information
aborgna-q authored Feb 20, 2024
1 parent 4985850 commit 2c9ae82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ documentation = "https://docs.rs/hugr/"
repository = "https://github.com/CQCL/hugr"
description = "Quantinuum's Hierarchical Unified Graph Representation"
keywords = ["Quantum", "Quantinuum"]
categories = ["Compilers"]
categories = ["compilers"]

[lib]
# Using different names for the lib and for the package is supported, but may be confusing.
Expand Down

0 comments on commit 2c9ae82

Please sign in to comment.