aboutsummaryrefslogtreecommitdiff
path: root/embassy-net/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-net/src/lib.rs')
-rw-r--r--embassy-net/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/embassy-net/src/lib.rs b/embassy-net/src/lib.rs
index 1bb112252..693a39ed5 100644
--- a/embassy-net/src/lib.rs
+++ b/embassy-net/src/lib.rs
@@ -15,6 +15,8 @@ pub(crate) mod fmt;
15#[cfg(feature = "dns")] 15#[cfg(feature = "dns")]
16pub mod dns; 16pub mod dns;
17mod driver_util; 17mod driver_util;
18#[cfg(feature = "icmp")]
19pub mod icmp;
18#[cfg(feature = "raw")] 20#[cfg(feature = "raw")]
19pub mod raw; 21pub mod raw;
20#[cfg(feature = "tcp")] 22#[cfg(feature = "tcp")]
@@ -22,8 +24,6 @@ pub mod tcp;
22mod time; 24mod time;
23#[cfg(feature = "udp")] 25#[cfg(feature = "udp")]
24pub mod udp; 26pub mod udp;
25#[cfg(feature = "icmp")]
26pub mod icmp;
27 27
28use core::cell::RefCell; 28use core::cell::RefCell;
29use core::future::{poll_fn, Future}; 29use core::future::{poll_fn, Future};