technocreatives / core2

The bare essentials of std::io for use in no_std. Alloc support is optional.
https://docs.rs/core2
Apache License 2.0
71 stars 23 forks source link

docs.rs build is failing #26

Open SOF3 opened 11 months ago

SOF3 commented 11 months ago

https://docs.rs/crate/core2/0.4.0/builds/501312

[INFO] [stderr]  Documenting core2 v0.4.0 (/opt/rustwide/workdir)
[INFO] [stderr] error[E0635]: unknown feature `read_initializer`
[INFO] [stderr]  --> src/lib.rs:3:64
[INFO] [stderr]   |
[INFO] [stderr] 3 | #![cfg_attr(all(feature = "std", feature = "nightly"), feature(read_initializer))]
[INFO] [stderr]   |                                                                ^^^^^^^^^^^^^^^^
[INFO] [stderr] 

seems that docs.rs runs cargo doc with --features nightly by default, but this feature no longer exists as per rust-lang/rust#42788.