statsig-rs 0.5.1

Unofficial crate to interact with statsig.io
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Implements the statsig client
//!
//! To change the default request timeout set the STATSIG_TIMEOUT_MS
//! environment variable to the desired timeout value.
//!
//! Reference: https://docs.statsig.com/http-api
mod client;
mod evaluator;
mod http;

pub mod models;
pub use crate::client::Client;