aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--embassy-net/src/lib.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/embassy-net/src/lib.rs b/embassy-net/src/lib.rs
index 8d0119f67..0f694ee70 100644
--- a/embassy-net/src/lib.rs
+++ b/embassy-net/src/lib.rs
@@ -8,7 +8,9 @@
8// This mod MUST go first, so that the others see its macros. 8// This mod MUST go first, so that the others see its macros.
9pub(crate) mod fmt; 9pub(crate) mod fmt;
10 10
11pub mod device; 11pub use embassy_net_driver as driver;
12
13mod device;
12#[cfg(feature = "tcp")] 14#[cfg(feature = "tcp")]
13pub mod tcp; 15pub mod tcp;
14#[cfg(feature = "udp")] 16#[cfg(feature = "udp")]