Skip to content

Commit

Permalink
chore: allow missing docs in tests
Browse files Browse the repository at this point in the history
After upgrading to Rust 1.83, this rule is enforced in a different way, which requires us to change it for tests.
  • Loading branch information
SimonThormeyer committed Dec 2, 2024
1 parent 3efb947 commit 0ff8f30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jwt/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! # Rusty JWT Tools
//!
//! A collection of JWT utilities.
#![deny(missing_docs)]
#![cfg_attr(not(test), deny(missing_docs))]
#![allow(clippy::single_component_path_imports)]
extern crate core;

Expand Down

0 comments on commit 0ff8f30

Please sign in to comment.