Skip to content

Commit

Permalink
Merge pull request #5273 from epage/docsrs
Browse files Browse the repository at this point in the history
docs: Include more content on docs.rs
  • Loading branch information
epage committed Dec 27, 2023
2 parents d092896 + 3724b9e commit 3630e58
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion clap_complete/Cargo.toml
Expand Up @@ -16,7 +16,9 @@ rust-version.workspace = true
include.workspace = true

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
features = ["unstable-doc"]
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]

[package.metadata.release]
pre-release-replacements = [
Expand Down Expand Up @@ -52,5 +54,6 @@ required-features = ["unstable-dynamic"]

[features]
default = []
unstable-doc = ["unstable-dynamic"] # for docs.rs
unstable-dynamic = ["dep:clap_lex", "dep:shlex", "dep:unicode-xid", "clap/derive", "dep:is_executable", "dep:pathdiff"]
debug = ["clap/debug"]
1 change: 1 addition & 0 deletions clap_complete/src/lib.rs
Expand Up @@ -7,6 +7,7 @@

#![doc(html_logo_url = "https://raw.githubusercontent.com/clap-rs/clap/master/assets/clap.png")]
#![doc = include_str!("../README.md")]
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![warn(missing_docs, trivial_casts, unused_allocation, trivial_numeric_casts)]
#![forbid(unsafe_code)]
#![allow(clippy::needless_doctest_main)]
Expand Down

0 comments on commit 3630e58

Please sign in to comment.