statsig-rust 0.19.1-beta.2604110309

Statsig Rust SDK for usage in multi-user server environments.
Documentation
1
2
3
4
5
6
7
8
#[derive(Debug, Clone)]
pub struct ProxyConfig {
    pub proxy_host: Option<String>,
    pub proxy_port: Option<u16>,
    pub proxy_auth: Option<String>,     // e.g., "username:password"
    pub proxy_protocol: Option<String>, // e.g., "http", "socks5", "https"
    pub ca_cert_path: Option<String>,   // Path to a PEM bundle for custom TLS roots
}