Build nu-protocol docs with all features enabled (#11180)

# Description
Currently, `PluginSignature` does not appear on
[`docs.rs`](https://docs.rs/nu-protocol/latest/nu_protocol/index.html),
since it is behind the `plugin` feature which is not enabled by default.
This PR adds [metadata](https://docs.rs/about/metadata) to the
Cargo.toml to get `docs.rs` to build docs with all features enabled.
This commit is contained in:
Ian Manske 2023-11-29 15:17:22 +00:00 committed by GitHub
parent 8386bc0919
commit 98952082ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,3 +39,6 @@ strum = "0.25"
strum_macros = "0.25"
nu-test-support = { path = "../nu-test-support", version = "0.87.2" }
rstest = "0.18"
[package.metadata.docs.rs]
all-features = true