Remove allow(unreachable_pub) from tor-guardmgr/src/lib.rs

Closes #589
This commit is contained in:
Neel Chauhan 2022-12-16 13:23:57 -08:00
parent fa5a417fc9
commit 23db2944cc
1 changed files with 0 additions and 5 deletions

View File

@ -92,11 +92,6 @@ pub use config::GuardMgrConfig;
pub use err::{GuardMgrConfigError, GuardMgrError, PickGuardError};
pub use events::ClockSkewEvents;
pub use filter::GuardFilter;
// TODO nightly: Remove this "allow" once
// https://github.com/rust-lang/rust/issues/102352 is solved.
//
// See arti#589.
#[allow(unreachable_pub)]
pub use ids::FirstHopId;
pub use pending::{GuardMonitor, GuardStatus, GuardUsable};
pub use skew::SkewEstimate;