Skip to content

Commit c1219fc

Browse files
authored
Remove private_in_public lint (#128)
### Checklist * [x] I have read the [Contributor Guide](../../CONTRIBUTING.md) * [x] I have read and agree to the [Code of Conduct](../../CODE_OF_CONDUCT.md) * [x] I have added a description of my changes and why I'd like them included in the section below ### Description of Changes Remove `private_in_public` which causes a CI build failure: https://rust-lang.github.io/rfcs/2145-type-privacy.html
1 parent c0da350 commit c1219fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/mirror-mirror-macros/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
missing_debug_implementations,
3434
// missing_docs
3535
)]
36-
#![deny(unreachable_pub, private_in_public)]
36+
#![deny(unreachable_pub)]
3737
#![allow(elided_lifetimes_in_paths, clippy::type_complexity)]
3838
#![forbid(unsafe_code)]
3939
#![cfg_attr(docsrs, feature(doc_auto_cfg, doc_cfg))]

crates/mirror-mirror/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@
245245
missing_debug_implementations,
246246
// missing_docs
247247
)]
248-
#![deny(unreachable_pub, private_in_public)]
248+
#![deny(unreachable_pub)]
249249
#![allow(
250250
elided_lifetimes_in_paths,
251251
clippy::type_complexity,

0 commit comments

Comments
 (0)