Sean1708 / rusty-cheddar

A Rust crate for automatically generating C header files from Rust source file.
http://sean1708.github.io/rusty-cheddar/
191 stars 25 forks source link

README order is odd #15

Closed skade closed 8 years ago

skade commented 8 years ago

Although the README states upfront that a nightly compiler is necessary for the following steps, then introduces steps that need nightly, then introduces steps for working with stable.

I think it should be the other way around: "I have a stable compiler from the website installed, how do I use it".

In generall, I also think that #[plugin()] usage for tools like this should be avoided.

Sean1708 commented 8 years ago

How's this?

In generall, I also think that #[plugin()] usage for tools like this should be avoided.

I think it's perfectly valid way to work (if a bit of an abuse of the lint system) and that users should at least be aware of the possibility of using it this way.