iceoryx2_cal/
lib.rs

1// Copyright (c) 2023 Contributors to the Eclipse Foundation
2//
3// See the NOTICE file(s) distributed with this work for additional
4// information regarding copyright ownership.
5//
6// This program and the accompanying materials are made available under the
7// terms of the Apache Software License 2.0 which is available at
8// https://www.apache.org/licenses/LICENSE-2.0, or the MIT license
9// which is available at https://opensource.org/licenses/MIT.
10//
11// SPDX-License-Identifier: Apache-2.0 OR MIT
12
13#![cfg_attr(not(any(test, feature = "std")), no_std)]
14#![warn(clippy::alloc_instead_of_core)]
15#![warn(clippy::std_instead_of_alloc)]
16#![warn(clippy::std_instead_of_core)]
17
18extern crate alloc;
19
20// Required for MVSC
21#[cfg(test)]
22extern crate iceoryx2_loggers;
23
24pub mod arc_sync_policy;
25pub mod communication_channel;
26pub mod dynamic_storage;
27pub mod event;
28pub mod hash;
29pub mod monitoring;
30pub mod named_concept;
31pub mod reactor;
32pub mod resizable_shared_memory;
33pub mod serialize;
34pub mod shared_memory;
35pub mod shm_allocator;
36pub mod static_storage;
37pub mod zero_copy_connection;
38
39#[doc(hidden)]
40pub mod testing;