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
//! Configuration management module
//!
//! Provides configuration options for dial/listen operations and
//! SDK-wide settings management.

pub mod options;
pub mod settings;

pub use options::{DialOptions, ListenOptions};
pub use settings::ZitiConfig;