conjure_runtime_rustls_platform_verifier/lib.rs
1/// A partial fork of `conjure-runtime` that exposes types required to implement custom raw client builders.
2pub mod conjure_runtime_raw {
3 pub use ::conjure_runtime_raw::*;
4}
5
6pub use conjure_runtime;
7pub use rustls_platform_verifier;
8
9mod raw_client_builder;
10
11pub use raw_client_builder::*;
12
13pub type PlatformVerifierClient =
14 conjure_runtime::Client<conjure_runtime_raw::raw::DefaultRawClient>;
15
16pub type ResponseBody = conjure_runtime::ResponseBody<conjure_runtime_raw::raw::DefaultRawBody>;
17
18pub mod crypto;