Skip to content
Snippets Groups Projects
Commit 5b1622c2 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

tor-rtcompat: Fix a warning when building with no backends.

Cargo publish (and probably nobody else!) builds this crate with no
features enabled.  When you do that, you get a warning about an
unused `use std::io`.

Fixing that.
parent 9d369257
No related branches found
No related tags found
1 merge request!547Fix minor issues found while publishing crates for Arti 0.4.0
......@@ -179,6 +179,7 @@ pub mod scheduler;
mod timer;
mod traits;
#[cfg(any(feature = "async-std", feature = "tokio"))]
use std::io;
pub use traits::{
BlockOn, CertifiedConn, Runtime, SleepProvider, TcpListener, TcpProvider, TlsProvider,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment