mssf_util/lib.rs
1// ------------------------------------------------------------
2// Copyright (c) Microsoft Corporation. All rights reserved.
3// Licensed under the MIT License (MIT). See License.txt in the repo root for license information.
4// ------------------------------------------------------------
5
6//! mssf utilities and extensions
7
8#[cfg(feature = "tokio")]
9pub mod tokio;
10
11// Requires tokio select
12#[cfg(feature = "tokio")]
13pub mod resolve;
14
15#[cfg(feature = "tokio")]
16pub mod retry;
17
18#[cfg(feature = "tokio")]
19pub mod monitoring;
20
21pub mod data;