chore(doc): deny doc broken links crate-wide

This commit is contained in:
Arthur Meyre
2022-12-06 11:25:57 +01:00
committed by jborfila
parent 2dd6c237f9
commit a31087badf
4 changed files with 1 additions and 3 deletions

View File

@@ -1,4 +1,3 @@
#![deny(rustdoc::broken_intra_doc_links)]
//! Welcome the the tfhe.rs `boolean` module documentation!
//!
//! # Description

View File

@@ -1,4 +1,3 @@
#![deny(rustdoc::broken_intra_doc_links)]
#![allow(clippy::missing_safety_doc)]
#[cfg(feature = "boolean-c-api")]
pub mod boolean;

View File

@@ -1,4 +1,3 @@
#![deny(rustdoc::broken_intra_doc_links)]
//! Welcome to the tfhe.rs `core_crypto` module documentation!
//!
//! This library contains a set of low-level primitives which can be used to implement *Fully

View File

@@ -1,5 +1,6 @@
#![cfg_attr(feature = "__wasm_api", allow(dead_code))]
#![cfg_attr(feature = "nightly-avx512", feature(stdsimd, avx512_target_feature))]
#![deny(rustdoc::broken_intra_doc_links)]
#[cfg(feature = "__c_api")]
pub mod c_api;