diff --git a/arrow-arith/src/lib.rs b/arrow-arith/src/lib.rs index ef0eaa8c2115..63640c51c3ce 100644 --- a/arrow-arith/src/lib.rs +++ b/arrow-arith/src/lib.rs @@ -22,7 +22,6 @@ html_favicon_url = "https://arrow.apache.org/img/arrow-logo_chevrons_black-txt_transparent-bg.svg" )] #![cfg_attr(docsrs, feature(doc_auto_cfg))] - #![warn(missing_docs)] pub mod aggregate; #[doc(hidden)] // Kernels to be removed in a future release diff --git a/arrow-array/src/lib.rs b/arrow-array/src/lib.rs index 97a945c2c7be..91696540d219 100644 --- a/arrow-array/src/lib.rs +++ b/arrow-array/src/lib.rs @@ -226,7 +226,6 @@ html_favicon_url = "https://arrow.apache.org/img/arrow-logo_chevrons_black-txt_transparent-bg.svg" )] #![cfg_attr(docsrs, feature(doc_auto_cfg))] - #![deny(rustdoc::broken_intra_doc_links)] #![warn(missing_docs)] diff --git a/arrow-avro/src/lib.rs b/arrow-avro/src/lib.rs index c48e7817d2af..11a4af8afd04 100644 --- a/arrow-avro/src/lib.rs +++ b/arrow-avro/src/lib.rs @@ -25,7 +25,6 @@ html_favicon_url = "https://arrow.apache.org/img/arrow-logo_chevrons_black-txt_transparent-bg.svg" )] #![cfg_attr(docsrs, feature(doc_auto_cfg))] - #![warn(missing_docs)] #![allow(unused)] // Temporary diff --git a/arrow-buffer/src/lib.rs b/arrow-buffer/src/lib.rs index 6bed9ad985bc..174cdc4d9c18 100644 --- a/arrow-buffer/src/lib.rs +++ b/arrow-buffer/src/lib.rs @@ -22,7 +22,6 @@ html_favicon_url = "https://arrow.apache.org/img/arrow-logo_chevrons_black-txt_transparent-bg.svg" )] #![cfg_attr(docsrs, feature(doc_auto_cfg))] - // used by [`buffer::mutable::dangling_ptr`] #![cfg_attr(miri, feature(strict_provenance))] #![warn(missing_docs)] diff --git a/arrow-cast/src/lib.rs b/arrow-cast/src/lib.rs index 5a255c5586ce..b042a7338519 100644 --- a/arrow-cast/src/lib.rs +++ b/arrow-cast/src/lib.rs @@ -22,7 +22,6 @@ html_favicon_url = "https://arrow.apache.org/img/arrow-logo_chevrons_black-txt_transparent-bg.svg" )] #![cfg_attr(docsrs, feature(doc_auto_cfg))] - #![warn(missing_docs)] pub mod cast; pub use cast::*; diff --git a/arrow-csv/src/lib.rs b/arrow-csv/src/lib.rs index 1f6f200a71e6..8532cf59a218 100644 --- a/arrow-csv/src/lib.rs +++ b/arrow-csv/src/lib.rs @@ -22,7 +22,6 @@ html_favicon_url = "https://arrow.apache.org/img/arrow-logo_chevrons_black-txt_transparent-bg.svg" )] #![cfg_attr(docsrs, feature(doc_auto_cfg))] - #![warn(missing_docs)] pub mod reader; diff --git a/arrow-data/src/lib.rs b/arrow-data/src/lib.rs index 563213d2a218..a023b1d98cb6 100644 --- a/arrow-data/src/lib.rs +++ b/arrow-data/src/lib.rs @@ -24,7 +24,6 @@ html_favicon_url = "https://arrow.apache.org/img/arrow-logo_chevrons_black-txt_transparent-bg.svg" )] #![cfg_attr(docsrs, feature(doc_auto_cfg))] - #![warn(missing_docs)] mod data; pub use data::*; diff --git a/arrow-flight/src/lib.rs b/arrow-flight/src/lib.rs index b3cbe69b86d5..2ed59f3a3884 100644 --- a/arrow-flight/src/lib.rs +++ b/arrow-flight/src/lib.rs @@ -42,7 +42,6 @@ html_favicon_url = "https://arrow.apache.org/img/arrow-logo_chevrons_black-txt_transparent-bg.svg" )] #![cfg_attr(docsrs, feature(doc_auto_cfg))] - #![allow(rustdoc::invalid_html_tags)] #![warn(missing_docs)] // The unused_crate_dependencies lint does not work well for crates defining additional examples/bin targets diff --git a/arrow-integration-test/src/lib.rs b/arrow-integration-test/src/lib.rs index bd178ef24abf..baa76059f9c6 100644 --- a/arrow-integration-test/src/lib.rs +++ b/arrow-integration-test/src/lib.rs @@ -26,7 +26,6 @@ html_favicon_url = "https://arrow.apache.org/img/arrow-logo_chevrons_black-txt_transparent-bg.svg" )] #![cfg_attr(docsrs, feature(doc_auto_cfg))] - #![warn(missing_docs)] use arrow_buffer::{IntervalDayTime, IntervalMonthDayNano, ScalarBuffer}; use hex::decode; diff --git a/arrow-ipc/src/lib.rs b/arrow-ipc/src/lib.rs index 9d260266db33..aa10031933c6 100644 --- a/arrow-ipc/src/lib.rs +++ b/arrow-ipc/src/lib.rs @@ -43,7 +43,6 @@ html_favicon_url = "https://arrow.apache.org/img/arrow-logo_chevrons_black-txt_transparent-bg.svg" )] #![cfg_attr(docsrs, feature(doc_auto_cfg))] - #![warn(missing_docs)] pub mod convert; pub mod reader; diff --git a/arrow-json/src/lib.rs b/arrow-json/src/lib.rs index 6c70295e8898..1c19315171ab 100644 --- a/arrow-json/src/lib.rs +++ b/arrow-json/src/lib.rs @@ -68,7 +68,6 @@ html_favicon_url = "https://arrow.apache.org/img/arrow-logo_chevrons_black-txt_transparent-bg.svg" )] #![cfg_attr(docsrs, feature(doc_auto_cfg))] - #![deny(rustdoc::broken_intra_doc_links)] #![warn(missing_docs)] diff --git a/arrow-ord/src/lib.rs b/arrow-ord/src/lib.rs index 2ad43e89fa09..99b0451992cf 100644 --- a/arrow-ord/src/lib.rs +++ b/arrow-ord/src/lib.rs @@ -48,7 +48,6 @@ html_favicon_url = "https://arrow.apache.org/img/arrow-logo_chevrons_black-txt_transparent-bg.svg" )] #![cfg_attr(docsrs, feature(doc_auto_cfg))] - #![warn(missing_docs)] pub mod cmp; #[doc(hidden)] diff --git a/arrow-row/src/lib.rs b/arrow-row/src/lib.rs index abe7e91021f9..714ef5e9f0ce 100644 --- a/arrow-row/src/lib.rs +++ b/arrow-row/src/lib.rs @@ -130,7 +130,6 @@ html_favicon_url = "https://arrow.apache.org/img/arrow-logo_chevrons_black-txt_transparent-bg.svg" )] #![cfg_attr(docsrs, feature(doc_auto_cfg))] - #![warn(missing_docs)] use std::cmp::Ordering; use std::hash::{Hash, Hasher}; diff --git a/arrow-select/src/lib.rs b/arrow-select/src/lib.rs index 10d858bda10b..1648dc2833d8 100644 --- a/arrow-select/src/lib.rs +++ b/arrow-select/src/lib.rs @@ -22,7 +22,6 @@ html_favicon_url = "https://arrow.apache.org/img/arrow-logo_chevrons_black-txt_transparent-bg.svg" )] #![cfg_attr(docsrs, feature(doc_auto_cfg))] - #![warn(missing_docs)] pub mod concat; diff --git a/arrow-string/src/lib.rs b/arrow-string/src/lib.rs index f31e01cce63d..4c90d783ff4d 100644 --- a/arrow-string/src/lib.rs +++ b/arrow-string/src/lib.rs @@ -22,7 +22,6 @@ html_favicon_url = "https://arrow.apache.org/img/arrow-logo_chevrons_black-txt_transparent-bg.svg" )] #![cfg_attr(docsrs, feature(doc_auto_cfg))] - #![warn(missing_docs)] mod binary_like; diff --git a/arrow/src/lib.rs b/arrow/src/lib.rs index ed4c3a4efd54..ad98b7167dcb 100644 --- a/arrow/src/lib.rs +++ b/arrow/src/lib.rs @@ -367,7 +367,6 @@ html_favicon_url = "https://arrow.apache.org/img/arrow-logo_chevrons_black-txt_transparent-bg.svg" )] #![cfg_attr(docsrs, feature(doc_auto_cfg))] - #![deny(clippy::redundant_clone)] #![warn(missing_debug_implementations)] #![warn(missing_docs)] diff --git a/parquet/src/lib.rs b/parquet/src/lib.rs index f656a6cfbab5..bd86ca3636d0 100644 --- a/parquet/src/lib.rs +++ b/parquet/src/lib.rs @@ -87,7 +87,6 @@ html_favicon_url = "https://raw.githubusercontent.com/apache/parquet-format/25f05e73d8cd7f5c83532ce51cb4f4de8ba5f2a2/logo/parquet-logos_1.svg" )] #![cfg_attr(docsrs, feature(doc_auto_cfg))] - #![warn(missing_docs)] /// Defines a an item with an experimental public API /// diff --git a/parquet_derive/src/lib.rs b/parquet_derive/src/lib.rs index 7040bf3095d7..2084fabae0ad 100644 --- a/parquet_derive/src/lib.rs +++ b/parquet_derive/src/lib.rs @@ -23,7 +23,6 @@ html_favicon_url = "https://raw.githubusercontent.com/apache/parquet-format/25f05e73d8cd7f5c83532ce51cb4f4de8ba5f2a2/logo/parquet-logos_1.svg" )] #![cfg_attr(docsrs, feature(doc_auto_cfg))] - #![warn(missing_docs)] #![recursion_limit = "128"] diff --git a/parquet_derive_test/src/lib.rs b/parquet_derive_test/src/lib.rs index 92d078f7601e..962f5517ce60 100644 --- a/parquet_derive_test/src/lib.rs +++ b/parquet_derive_test/src/lib.rs @@ -20,7 +20,6 @@ html_favicon_url = "https://raw.githubusercontent.com/apache/parquet-format/25f05e73d8cd7f5c83532ce51cb4f4de8ba5f2a2/logo/parquet-logos_1.svg" )] #![cfg_attr(docsrs, feature(doc_auto_cfg))] - #![allow(clippy::approx_constant)] use parquet_derive::{ParquetRecordReader, ParquetRecordWriter};