braincore / pid-rs

A PID controller for Rust projects.
Apache License 2.0
92 stars 26 forks source link

Suggestion: Add categories ”no_std“ and maybe “embedded” to Cargo.toml #16

Closed thecodechemist99 closed 1 year ago

thecodechemist99 commented 1 year ago

Hi,

it would be great if you could add the category "no-std" (and maybe also "embedded") to the Cargo.toml file of your crate. Adding these categories would make it a lot easier to find for embedded developers on crates.io using filter by category. Right now, your crate is excluded from the filtered results despite being compatible.

It would look like this:

[package]
categories = ["no-std", "embedded"]
Owez commented 1 year ago

Agreed, I'll add later today or tomorrow and publish with #17 all going well

Owez commented 1 year ago

I've looked through all the category slugs and the two here seem like the most fitting. Maybe algorithms could count as well because this controller is fundementally an algorithm?