Skip to main content

edgehog_device_runtime_forwarder/
lib.rs

1// Copyright 2024 SECO Mind Srl
2// SPDX-License-Identifier: Apache-2.0
3
4#![warn(missing_docs, rustdoc::missing_crate_level_docs)]
5
6//! Edgehog Device Runtime Forwarder
7//!
8//! Implement forwarder functionality on a device.
9
10pub mod astarte;
11pub mod collection;
12pub mod connection;
13pub mod connections_manager;
14mod messages;
15
16// re-exported dependencies
17pub use astarte_device_sdk;
18
19#[cfg(feature = "_test-utils")]
20pub mod test_utils;