In the public API for regorus in docs.rs, display that certain API is available only if a specific feature is available.
For example, https://docs.rs/regorus/latest/regorus/struct.Engine.html#method.get_coverage_report does not list that coverage feature is necessary for this API.
There has been an attempt to make this work:
|
# RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc --all-features --no-deps |
@mkulke What is the right way to do this?
In the public API for regorus in docs.rs, display that certain API is available only if a specific feature is available.
For example, https://docs.rs/regorus/latest/regorus/struct.Engine.html#method.get_coverage_report does not list that
coveragefeature is necessary for this API.There has been an attempt to make this work:
regorus/Cargo.toml
Line 165 in 56bd884
@mkulke What is the right way to do this?