Merge pull request #3461 from clap-rs/unstable-doc

Remove unnecessary unstable-doc usage
This commit is contained in:
Ed Page 2022-02-14 07:43:54 -06:00 committed by GitHub
commit 9b3eaf5ade
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 5 deletions

View file

@ -14,7 +14,7 @@ _FEATURES = minimal default wasm full debug release
_FEATURES_minimal = --no-default-features --features "std"
_FEATURES_default =
_FEATURES_wasm = --features "derive cargo env unicode yaml regex unstable-replace unstable-multicall unstable-grouped"
_FEATURES_full = --features "derive cargo env unicode yaml regex unstable-replace unstable-multicall unstable-grouped wrap_help unstable-doc"
_FEATURES_full = --features "derive cargo env unicode yaml regex unstable-replace unstable-multicall unstable-grouped wrap_help"
_FEATURES_debug = ${_FEATURES_full} --features debug
_FEATURES_release = ${_FEATURES_full} --release

View file

@ -4,10 +4,6 @@
fn example_tests() {
let t = trycmd::TestCases::new();
let features = [
#[cfg(feature = "debug")]
"debug",
#[cfg(feature = "unstable-doc")]
"unstable-doc",
#[cfg(feature = "std")]
"std",
#[cfg(feature = "derive")]