velo_common/lib.rs
1// SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2// SPDX-License-Identifier: Apache-2.0
3
4#![doc = include_str!("../README.md")]
5
6mod address;
7mod identity;
8mod transport;
9
10// Re-export all public types
11pub use address::{PeerInfo, WorkerAddress, WorkerAddressError};
12pub use identity::{InstanceId, WorkerId};
13pub use transport::TransportKey;