Skip to content

Commit

Permalink
Silence error from enabling nightly_error_messages
Browse files Browse the repository at this point in the history
  • Loading branch information
jplatte committed Aug 8, 2023
1 parent 8e033e7 commit 51aec40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion axum-core/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![cfg_attr(nightly_error_messages, feature(rustc_attrs))]
#![cfg_attr(nightly_error_messages, allow(internal_features), feature(rustc_attrs))]
//! Core types and traits for [`axum`].
//!
//! Libraries authors that want to provide [`FromRequest`] or [`IntoResponse`] implementations
Expand Down
2 changes: 1 addition & 1 deletion axum/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![cfg_attr(nightly_error_messages, feature(rustc_attrs))]
#![cfg_attr(nightly_error_messages, allow(internal_features), feature(rustc_attrs))]
//! axum is a web application framework that focuses on ergonomics and modularity.
//!
//! # Table of contents
Expand Down

0 comments on commit 51aec40

Please sign in to comment.