From 227533d456fe32e48ffcd3796f1e6c8f9318b230 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Fri, 25 Oct 2019 12:50:15 -0700 Subject: net: move into tokio crate (#1683) A step towards collapsing Tokio sub crates into a single `tokio` crate (#1318). The `net` implementation is now provided by the main `tokio` crate. Functionality can be opted out of by using the various net related feature flags. --- tests-build/src/lib.rs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tests-build/src/lib.rs (limited to 'tests-build/src') diff --git a/tests-build/src/lib.rs b/tests-build/src/lib.rs new file mode 100644 index 00000000..7f38a440 --- /dev/null +++ b/tests-build/src/lib.rs @@ -0,0 +1,8 @@ +#[cfg(feature = "tokio-executor")] +pub use tokio_executor; + +#[cfg(feature = "tokio-net")] +pub use tokio_net; + +#[cfg(feature = "tokio")] +pub use tokio; -- cgit v1.2.3