From bec649f3432b43786e48ee0a4df2eb1965428010 Mon Sep 17 00:00:00 2001 From: Marco Neumann Date: Thu, 8 May 2025 17:23:50 +0200 Subject: [PATCH] fix: `rustdoc::unportable_markdown` was removed Nightly CI fails with: ```text Documenting arrow-flight v55.0.0 (/__w/arrow-rs/arrow-rs/arrow-flight) error: lint `rustdoc::unportable_markdown` has been removed: old parser removed --> arrow-flight/src/sql/mod.rs:48:14 | 48 | #![allow(rustdoc::unportable_markdown)] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `-D renamed-and-removed-lints` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(renamed_and_removed_lints)]` error: could not document `arrow-flight` ``` due to https://github.com/rust-lang/rust/pull/140709 . --- arrow-flight/src/sql/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/arrow-flight/src/sql/mod.rs b/arrow-flight/src/sql/mod.rs index 94bb96a4f852..f11b6f5bd98a 100644 --- a/arrow-flight/src/sql/mod.rs +++ b/arrow-flight/src/sql/mod.rs @@ -45,7 +45,6 @@ use prost::Message; #[allow(clippy::all)] mod gen { - #![allow(rustdoc::unportable_markdown)] // Since this file is auto-generated, we suppress all warnings #![allow(missing_docs)] include!("arrow.flight.protocol.sql.rs");