We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
protocols
Currently, the public Rust Docs for protocols crates are rendered without enabling any of the feature flags available on the crates.
That prevents many important elements from being displayed (e.g.: State in codec_sv2, which depends on the noise_sv2 feature flag being enabled).
State
codec_sv2
noise_sv2
In order to change that, we need to add the following to their Cargo.toml:
Cargo.toml
[package.metadata.docs.rs] all-features = true
ref: https://docs.rs/about/metadata
The text was updated successfully, but these errors were encountered:
all-feature
GitGab19
Successfully merging a pull request may close this issue.
Currently, the public Rust Docs for
protocols
crates are rendered without enabling any of the feature flags available on the crates.That prevents many important elements from being displayed (e.g.:
State
incodec_sv2
, which depends on thenoise_sv2
feature flag being enabled).In order to change that, we need to add the following to their
Cargo.toml
:ref: https://docs.rs/about/metadata
The text was updated successfully, but these errors were encountered: