mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-27 00:00:12 +02:00
tokio: re-export correct tokio-uds version (#1286)
An earlier PR (#1282) re-exported the version from crates.io and not git master.
This commit is contained in:
+1
-1
@@ -84,7 +84,7 @@ tracing-core = { version = "0.1", optional = true }
|
||||
#tokio-futures = { version = "0.2.0", optional = true, path = "../tokio-futures" }
|
||||
|
||||
[target.'cfg(unix)'.dependencies]
|
||||
tokio-uds = { version = "0.2.1", optional = true }
|
||||
tokio-uds = { version = "0.3.0", optional = true, path = "../tokio-uds" }
|
||||
|
||||
[dev-dependencies]
|
||||
tokio-test = { path = "../tokio-test" }
|
||||
|
||||
+2
-5
@@ -67,10 +67,7 @@ pub use self::udp::UdpSocket;
|
||||
pub mod unix {
|
||||
//! Unix domain socket bindings for `tokio` (only available on unix systems).
|
||||
|
||||
pub use tokio_uds::{
|
||||
ConnectFuture, Incoming, RecvDgram, SendDgram, UCred, UnixDatagram, UnixDatagramFramed,
|
||||
UnixListener, UnixStream,
|
||||
};
|
||||
pub use tokio_uds::{UCred, UnixDatagram, UnixListener, UnixStream};
|
||||
}
|
||||
#[cfg(all(unix, feature = "uds"))]
|
||||
pub use self::unix::{UnixDatagram, UnixDatagramFramed, UnixListener, UnixStream};
|
||||
pub use self::unix::{UnixDatagram, UnixListener, UnixStream};
|
||||
|
||||
Reference in New Issue
Block a user