1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#![no_std]
#![allow(async_fn_in_trait)]

#[cfg(feature = "std")]
#[allow(unused_imports)]
#[macro_use]
extern crate std;

#[cfg(feature = "alloc")]
#[allow(unused_imports)]
#[macro_use]
extern crate alloc;

#[cfg(all(feature = "defmt", feature = "log"))]
compile_error!("You must enable at most one of the following features: defmt, log");

pub mod channel;
pub mod eth;
pub mod http;
pub mod io;
pub mod ipv4;
pub mod log;
pub mod mqtt;
pub mod ota;
pub mod storage;
pub mod utils;
pub mod wifi;
pub mod ws;