⚠️ VeridianOS Kernel Documentation - This is low-level kernel code. All functions are unsafe unless explicitly marked otherwise. no_std

veridian_kernel/services/mesh/
mod.rs

1//! Service Mesh implementation
2//!
3//! Provides sidecar proxy, service discovery, and SPIFFE-based identity
4//! management for microservice communication.
5
6#![allow(dead_code)]
7
8pub mod discovery;
9pub mod identity;
10pub mod proxy;