From 5c5cebac1f619aa92462b8db0364e7493045bd19 Mon Sep 17 00:00:00 2001 From: Brian Bowman Date: Fri, 11 Sep 2020 03:57:02 -0500 Subject: [PATCH] Fix some top-level items being missing Also, remove the `unreachable_pub` lint, which suggested the erroneous change. Rust issue: https://github.com/rust-lang/rust/issues/64762 --- src/lib.rs | 1 - src/steam/mod.rs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 0d2d77f90..62d8a3a9a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -27,7 +27,6 @@ deprecated_in_future, macro_use_extern_crate, missing_debug_implementations, - unreachable_pub, unused_qualifications )] #![allow(dead_code)] diff --git a/src/steam/mod.rs b/src/steam/mod.rs index b1cf3edec..2aa3b01da 100644 --- a/src/steam/mod.rs +++ b/src/steam/mod.rs @@ -4,4 +4,4 @@ pub mod user_stats; mod common; -pub(crate) use common::*; +pub use common::*;