You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
warning: autocfg could not probe for `std`
error: missing documentation for the crate
--> <anon>:1:1
|
1 | extern crate std as probe;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D missing-docs` implied by `-D warnings`
error: aborting due to previous error
which causes indexmap to expose the wrong API and breaks the compilation of an older version of h2.
As far as I can tell, this is exactly what --cap-lints has been introduced to solve, so it might make sense to pass this flag to probe invocations of rustc.
The text was updated successfully, but these errors were encountered:
As mentioned in indexmap-rs/indexmap#144, the
rust-server
openapi-generator generates a local.cargo/config
with-W missing_docs
and-D warnings
. This causeswhich causes
indexmap
to expose the wrong API and breaks the compilation of an older version ofh2
.As far as I can tell, this is exactly what
--cap-lints
has been introduced to solve, so it might make sense to pass this flag to probe invocations ofrustc
.The text was updated successfully, but these errors were encountered: