ziti-sdk 0.3.0

Ziti Rust SDK - High-performance, async-first implementation for secure, zero-trust networking
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Context module for the Ziti SDK
//!
//! Provides the main Context interface and builder pattern for configuring
//! and creating Ziti SDK instances.

pub mod builder;
#[allow(clippy::module_inception)]
pub mod context;

pub use builder::ContextBuilder;
pub use context::Context;