sms-types 2.0.0

Rust shared types for SMS Server and Client.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! SMS Server and Client shared types.

#![deny(missing_docs)]
#![deny(unsafe_code)]
#![warn(clippy::all, clippy::pedantic)]

pub mod events;
pub mod modem;
pub mod sms;

#[cfg(feature = "http")]
pub mod http;

#[cfg(feature = "gnss")]
pub mod gnss;