| 1 | # Copyright © SixtyFPS GmbH <info@sixtyfps.io> |
| 2 | # SPDX-License-Identifier: MIT OR Apache-2.0 |
| 3 | |
| 4 | [package] |
| 5 | name = "document-features" |
| 6 | version = "0.2.11" |
| 7 | authors = ["Slint Developers <info@slint.dev>" ] |
| 8 | edition = "2018" |
| 9 | license = "MIT OR Apache-2.0" |
| 10 | repository = "https://github.com/slint-ui/document-features" |
| 11 | homepage = "https://slint.rs" |
| 12 | description = "Extract documentation for the feature flags from comments in Cargo.toml" |
| 13 | categories = ["development-tools" ] |
| 14 | keywords = ["documentation" , "features" , "rustdoc" , "macro" ] |
| 15 | |
| 16 | [lib] |
| 17 | proc-macro = true |
| 18 | path = "lib.rs" |
| 19 | |
| 20 | [features] |
| 21 | default = [] |
| 22 | |
| 23 | ## Internal feature used only for the tests, don't enable |
| 24 | self-test = [] |
| 25 | |
| 26 | [dependencies] |
| 27 | litrs = { version = "0.4.1" , default-features = false } |
| 28 | |