esphome_native_api/lib.rs
1#![warn(missing_docs)]
2#![doc = include_str!("../README.md")]
3#![cfg_attr(not(feature = "std"), no_std)]
4
5pub mod proto;
6
7#[cfg(feature = "std")]
8pub mod esphomeapi;
9#[cfg(feature = "std")]
10pub mod esphomeserver;
11#[cfg(feature = "std")]
12mod frame;
13#[cfg(feature = "std")]
14mod packet_plaintext;
15#[cfg(feature = "std")]
16pub mod parser;
17// #[cfg(feature = "std")]
18#[cfg(feature = "std")]
19mod packet_encrypted;
20
21#[cfg(feature = "std")]
22pub mod hash;