commit | 959213af96b930e28361394091301863cb360626 | [log] [tgz] |
---|---|---|
author | Jeff Vander Stoep <[email protected]> | Thu Feb 02 20:54:08 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Thu Feb 02 20:54:08 2023 +0000 |
tree | 5dd052176f1219e66527f57d2d4847fd28cbdb5d | |
parent | 214e14c8151c70940889b2da33ff3256a49bff42 [diff] | |
parent | 86001b3c86e6e6472d9c71756895905b6e91db65 [diff] |
Upgrade document-features to 0.2.7 am: 86001b3c86 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/document-features/+/2417172 Change-Id: I464a4692ceeefdd27eb5318efd6abdcff75903a8 Signed-off-by: Automerger Merge Worker <[email protected]>
This crate provides a macro that extracts documentation comments from Cargo.toml
To use this crate, add #![doc = document_features::document_features!()]
in your crate documentation. The document_features!()
macro reads your Cargo.toml
file, extracts feature comments and generates a markdown string for your documentation.
Use ##
and #!
comments in your Cargo.toml to document features, for example:
[dependencies] document-features = "0.2" ## ... [features] ## The foo feature enables the `foo` functions foo = [] ## The bar feature enables the [`bar`] module bar = [] #! ### Experimental features #! The following features are experimental ## Activate the fusion reactor fusion = []
These comments keep the feature definition and documentation next to each other, and they are then rendered into your crate documentation.
Check out the documentation for more details.
Contributions are welcome. We accept pull requests and bug reports.
MIT OR Apache-2.0