forked from KDAB/cxx-qt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cxx-qt-build: enable deny missing docs
Related to KDAB#21
- Loading branch information
1 parent
41ff8a9
commit fa26bde
Showing
1 changed file
with
7 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,13 @@ | |
// SPDX-FileContributor: Gerhard de Clercq <[email protected]> | ||
// | ||
// SPDX-License-Identifier: MIT OR Apache-2.0 | ||
|
||
#![deny(missing_docs)] | ||
|
||
//! This crate provides a builder which parses given Rust source code to search | ||
//! for CXX-Qt or CXX macros and generate any resulting C++ code. It also builds | ||
//! the C++ code into a binary with any cxx-qt-lib code and Qt linked. | ||
use convert_case::{Case, Casing}; | ||
use quote::ToTokens; | ||
use std::{ | ||
|