Skip to main content

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 events;
8pub mod modem;
9pub mod sms;
10
11#[cfg(feature = "http")]
12pub mod http;
13
14#[cfg(feature = "gnss")]
15pub mod gnss;