rust-osdev / x86_64

Library to program x86_64 hardware.
https://docs.rs/x86_64
Apache License 2.0
797 stars 132 forks source link

CI: Don't error on stabilized features #500

Closed phil-opp closed 1 month ago

phil-opp commented 1 month ago

Only issue a warning

Fixes #499

phil-opp commented 1 month ago

Seems like -Dwarnings -Wstable-features has no effect. Probably because the warnings lint group is described as "All lints that are set to issue warnings". What works is -Dwarnings -Astable-features, but I don't think that we want to completely silence the warning.

See also: https://github.com/rust-lang/rust/issues/118140