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