sms_types/
lib.rs

1//! SMS Server and Client shared types.
2
3#![deny(missing_docs)]
4#![deny(unsafe_code)]
5#![warn(clippy::all, clippy::pedantic)]
6
7pub mod modem;
8pub mod sms;
9
10#[cfg(feature = "http")]
11pub mod http;
12
13#[cfg(feature = "websocket")]
14pub mod websocket;
15
16#[cfg(feature = "gnss")]
17pub mod gnss;