1// Copyright (c) Microsoft Corporation. 2// Licensed under the MIT License. 3 4//! Vmbus channel implementations using async. 5 6#![forbid(unsafe_code)] 7 8pub mod async_dgram; 9mod core; 10pub mod pipe; 11pub mod queue;