Skip to content

Commit

Permalink
Fix some top-level items being missing
Browse files Browse the repository at this point in the history
Also, remove the `unreachable_pub` lint, which suggested the erroneous change. Rust issue: rust-lang/rust#64762
  • Loading branch information
Seeker14491 committed Sep 11, 2020
1 parent 312cba4 commit 5c5ceba
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
deprecated_in_future,
macro_use_extern_crate,
missing_debug_implementations,
unreachable_pub,
unused_qualifications
)]
#![allow(dead_code)]
Expand Down
2 changes: 1 addition & 1 deletion src/steam/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ pub mod user_stats;

mod common;

pub(crate) use common::*;
pub use common::*;

0 comments on commit 5c5ceba

Please sign in to comment.