Describe the bug
Some items are core in MCP server development, like rmcp::transport::streamable_http_server::StreamableHttpServerConfig. However, these items are missing in current rustdocs. This is because they are marked with #[cfg(not(feature = "local"))], while you pass all-features = true to docs.rs when building docs. This leads the rustdoc to ignore these items.
To Reproduce
Steps to reproduce the behavior:
- Open the latest doc in docs.rs and search for such items
Expected behavior
Such items are present in rustdoc
Additional context
I think a proper workaround is to let docs.rs build rustdoc without local feature.
Describe the bug
Some items are core in MCP server development, like
rmcp::transport::streamable_http_server::StreamableHttpServerConfig. However, these items are missing in current rustdocs. This is because they are marked with#[cfg(not(feature = "local"))], while you passall-features = trueto docs.rs when building docs. This leads the rustdoc to ignore these items.To Reproduce
Steps to reproduce the behavior:
Expected behavior
Such items are present in rustdoc
Additional context
I think a proper workaround is to let docs.rs build rustdoc without
localfeature.