1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// ------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
// Licensed under the MIT License (MIT). See License.txt in the repo root for license information.
// ------------------------------------------------------------
//! # Features
//! All features are enabled by default unless otherwise noted.
//! For most scenarios, you'll want the features. However, in some scenarios, such as:
//! - integrating Rust into an existing Service Fabric Application written in another language
//! - when you are using the lower-level COM API to do something more custom
//! You might not need all of the functionality that the mssf-core crate provides
//! In this case, you can configure only what you need to reduce dependencies and compile times.
//!
//! * ** config_source **  -
//!     Provides an implementation of config::Source. Requires config_rs crate
//!
//! * ** Tokio **  -
//!     A lot of the sophoisticated functionality in this crate requires Tokio.
//!     However, even without tokio, some of the higher level wrappers over COM types have utility.

// lib that contains all common extensions for the raw fabric apis.

#[cfg(feature = "tokio_async")]
pub mod client;
#[cfg(feature = "config_source")]
pub mod conf;
pub mod debug;
pub mod error;
mod iter;
pub mod runtime;
pub mod strings;
#[cfg(feature = "tokio_async")]
pub mod sync;
pub mod types;

// re-export some windows types
pub use windows_core::{Error, Result, GUID, HRESULT, HSTRING, PCWSTR};