1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#![allow(clippy::let_unit_value)]
#![feature(cfg_version)]
#![cfg_attr(
    all(feature = "web", not(version("1.65"))),
    feature(generic_associated_types)
)]
#![cfg_attr(feature = "web", feature(type_alias_impl_trait))]
#![cfg_attr(feature = "ui", recursion_limit = "1024")]

#[cfg(feature = "sim")]
pub mod adc;
#[cfg(feature = "sim")]
pub mod display;
pub mod dto;
#[cfg(feature = "sim")]
pub mod gpio;
#[cfg(feature = "sim")]
pub mod peripherals;
#[cfg(feature = "ui")]
pub mod ui;
#[cfg(feature = "web")]
pub mod web;
#[cfg(feature = "ws")]
pub mod ws;