• Home
Name
Date
Size
#Lines
LOC

..--

.github/workflows/03-May-2024-4843

tests/03-May-2024-3936

.cargo_vcs_info.jsonD03-May-202494 66

.gitignoreD03-May-202419 32

Android.bpD03-May-20241.8 KiB5652

CHANGELOG.mdD03-May-2024821 3920

Cargo.tomlD03-May-20241.1 KiB4136

Cargo.toml.origD03-May-2024738 2822

LICENSED03-May-202410 KiB7441

LICENSE-APACHED03-May-202410 KiB7441

LICENSE-MITD03-May-20241.1 KiB2016

METADATAD03-May-2024696 2422

MODULE_LICENSE_APACHE2D03-May-20240

OWNERSD03-May-202465 32

README.mdD03-May-20241.3 KiB4429

cargo2android.jsonD03-May-202420 43

lib.rsD03-May-202425.4 KiB881647

rustfmt.tomlD03-May-202429 21

README.md

1# Document your crate's feature flags
2
3[![Crates.io](https://img.shields.io/crates/v/document-features)](https://crates.io/crates/document-features)
4[![Documentation](https://docs.rs/document-features/badge.svg)](https://docs.rs/document-features/)
5
6This crate provides a macro that extracts documentation comments from Cargo.toml
7
8To use this crate, add `#![doc = document_features::document_features!()]` in your crate documentation.
9The `document_features!()` macro reads your `Cargo.toml` file, extracts feature comments and generates
10a markdown string for your documentation.
11
12Use `## ` and `#! ` comments in your Cargo.toml to document features, for example:
13
14```toml
15[dependencies]
16document-features = "0.2"
17## ...
18
19[features]
20## The foo feature enables the `foo` functions
21foo = []
22## The bar feature enables the [`bar`] module
23bar = []
24
25#! ### Experimental features
26#! The following features are experimental
27
28## Activate the fusion reactor
29fusion = []
30```
31
32These comments keep the feature definition and documentation next to each other, and they are then
33rendered into your crate documentation.
34
35Check out the [documentation](https://docs.rs/document-features/) for more details.
36
37## Contributions
38
39Contributions are welcome. We accept pull requests and bug reports.
40
41## License
42
43MIT OR Apache-2.0
44