1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
#![cfg_attr(not(feature = "std"), no_std)]

#[cfg(feature = "alloc")]
pub mod anyerror;
pub mod eth;
#[cfg(feature = "std")] // TODO: Lower requirements to "alloc"
pub mod httpd;
pub mod ipv4;
pub mod mutex;
pub mod ota;
pub mod ping;
#[cfg(feature = "alloc")] // TODO: Expose a subset which does not require "alloc"
pub mod storage;
#[cfg(feature = "alloc")] // TODO: Expose a subset which does not require "alloc"
pub mod wifi;

#[cfg(all(feature = "alloc", feature = "use_serde"))]
pub mod edge_config;