iceoryx2_services_discovery/lib.rs
1// Copyright (c) 2025 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//! # Discovery Services
14//!
15//! The `iceoryx2-services-discovery` crate provides discovery services for the components
16//! of an iceoryx2 system. These services enable other applications built on iceoryx2 to
17//! get informed of the presense of these components.
18//!
19
20#![no_std]
21#![warn(missing_docs)]
22
23extern crate alloc;
24
25/// Discovery and tracking of services in an iceoryx2 system
26pub mod service_discovery;