Temporarily suppress a false positive from nightly.

Nightly rust gives a warning about this "pub use", but the warning
is a false positive.  Since it doesn't seem to be going away in a
hurry, let's suppress it for now.
This commit is contained in:
Nick Mathewson 2022-10-04 16:40:34 -04:00
parent d50efc835b
commit 6341057129
1 changed files with 5 additions and 0 deletions

View File

@ -171,6 +171,11 @@ mod util;
pub use err::{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;