1 unstable release

0.1.0 Aug 27, 2024

#521 in Web programming

Download history 148/week @ 2024-08-25 7/week @ 2024-09-01

155 downloads per month

MIT license

100KB
2.5K SLoC

GrowthBook Rust SDK

Crates.io

Non-official GrowthBook SDK for Rust services.

This crate provide an easy way to retrieve a feature value using SDK-KEY.


How to use

Initializing SDK

let gb_url = "HTTP_OR_HTTPS_URL";
let sdk_key = "SDK_KEY";
let gb = GrowthBookClient::new(gb_url, sdk_key, None, None)?;

Configuration

The lib is configurable via environment variables as following:

env var required description
GB_HTTP_CLIENT_TIMEOUT false Timeout from gb client to wait a response from gb server. Default value is 10s
GB_UPDATE_INTERVAL false Interval to fetch features data from gb server. Default value is 60s
GB_URL false URL from gb server
GB_SDK_KEY false SDK key to get features from gb server

Examples

Check the client folder for a complete example using the SDK.

Dependencies

~15–28MB
~415K SLoC