parsec_service/utils/
mod.rs

1// Copyright 2019 Contributors to the Parsec project.
2// SPDX-License-Identifier: Apache-2.0
3//! Service utilities
4pub mod cli;
5pub mod config;
6mod global_config;
7mod service_builder;
8#[cfg(all(
9    feature = "mbed-crypto-provider",
10    feature = "pkcs11-provider",
11    feature = "tpm-provider",
12    feature = "cryptoauthlib-provider",
13    feature = "trusted-service-provider",
14    feature = "direct-authenticator"
15))]
16#[cfg(test)]
17mod tests;
18
19pub use global_config::GlobalConfig;
20pub use service_builder::ServiceBuilder;