From a513ffdd011cfb19d26d146837554c418420094d Mon Sep 17 00:00:00 2001 From: Brian Donovan <1938+eventualbuddha@users.noreply.github.com> Date: Fri, 23 Feb 2024 09:39:06 -0800 Subject: [PATCH] fix: remove deprecated lint group --- apps/rave-jx-terminal/backend/src/main.rs | 2 +- apps/rave-scan/backend/src/main.rs | 2 +- services/rave-server/src/main.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/rave-jx-terminal/backend/src/main.rs b/apps/rave-jx-terminal/backend/src/main.rs index 1628a9bfb..16343ae2c 100644 --- a/apps/rave-jx-terminal/backend/src/main.rs +++ b/apps/rave-jx-terminal/backend/src/main.rs @@ -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))] diff --git a/apps/rave-scan/backend/src/main.rs b/apps/rave-scan/backend/src/main.rs index 3aae7fd7d..69068f1f5 100644 --- a/apps/rave-scan/backend/src/main.rs +++ b/apps/rave-scan/backend/src/main.rs @@ -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))] diff --git a/services/rave-server/src/main.rs b/services/rave-server/src/main.rs index 2d4f2259f..823ba6ae1 100644 --- a/services/rave-server/src/main.rs +++ b/services/rave-server/src/main.rs @@ -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))]