Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
.github/workflows/ | 03-May-2024 | - | 48 | 43 | ||
tests/ | 03-May-2024 | - | 39 | 36 | ||
.cargo_vcs_info.json | D | 03-May-2024 | 94 | 6 | 6 | |
.gitignore | D | 03-May-2024 | 19 | 3 | 2 | |
Android.bp | D | 03-May-2024 | 1.8 KiB | 56 | 52 | |
CHANGELOG.md | D | 03-May-2024 | 821 | 39 | 20 | |
Cargo.toml | D | 03-May-2024 | 1.1 KiB | 41 | 36 | |
Cargo.toml.orig | D | 03-May-2024 | 738 | 28 | 22 | |
LICENSE | D | 03-May-2024 | 10 KiB | 74 | 41 | |
LICENSE-APACHE | D | 03-May-2024 | 10 KiB | 74 | 41 | |
LICENSE-MIT | D | 03-May-2024 | 1.1 KiB | 20 | 16 | |
METADATA | D | 03-May-2024 | 696 | 24 | 22 | |
MODULE_LICENSE_APACHE2 | D | 03-May-2024 | 0 | |||
OWNERS | D | 03-May-2024 | 65 | 3 | 2 | |
README.md | D | 03-May-2024 | 1.3 KiB | 44 | 29 | |
cargo2android.json | D | 03-May-2024 | 20 | 4 | 3 | |
lib.rs | D | 03-May-2024 | 25.4 KiB | 881 | 647 | |
rustfmt.toml | D | 03-May-2024 | 29 | 2 | 1 |
README.md
1# Document your crate's feature flags 2 3[](https://crates.io/crates/document-features) 4[](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