Skip to content

Commit

Permalink
fix: remove deprecated lint group
Browse files Browse the repository at this point in the history
  • Loading branch information
eventualbuddha committed Feb 27, 2024
1 parent b692add commit a513ffd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/rave-jx-terminal/backend/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
missing_debug_implementations,
missing_docs
)]
#![deny(unreachable_pub, private_in_public)]
#![deny(unreachable_pub)]
#![allow(elided_lifetimes_in_paths, clippy::type_complexity)]
#![forbid(unsafe_code)]
#![cfg_attr(docsrs, feature(doc_auto_cfg, doc_cfg))]
Expand Down
2 changes: 1 addition & 1 deletion apps/rave-scan/backend/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
missing_debug_implementations,
missing_docs
)]
#![deny(unreachable_pub, private_in_public)]
#![deny(unreachable_pub)]
#![allow(elided_lifetimes_in_paths, clippy::type_complexity)]
#![forbid(unsafe_code)]
#![cfg_attr(docsrs, feature(doc_auto_cfg, doc_cfg))]
Expand Down
2 changes: 1 addition & 1 deletion services/rave-server/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
missing_debug_implementations,
missing_docs
)]
#![deny(unreachable_pub, private_in_public)]
#![deny(unreachable_pub)]
#![allow(elided_lifetimes_in_paths, clippy::type_complexity)]
#![forbid(unsafe_code)]
#![cfg_attr(docsrs, feature(doc_auto_cfg, doc_cfg))]
Expand Down

0 comments on commit a513ffd

Please sign in to comment.