-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
29 lines (28 loc) · 955 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "statsig"
version = "1.4.0"
description = "Statsig Rust SDK for usage in multi-user server environments."
keywords = ["gate", "flag", "ci", "test", "experiment"]
categories = ["api-bindings", "development-tools", "web-programming", "config"]
repository = "https://github.com/statsig-io/rust-sdk"
documentation = "https://docs.statsig.com/server/rustSDK"
homepage = "https://statsig.com/"
authors = ["Statsig", "Daniel Loomb <[email protected]>"]
license = "ISC"
edition = "2021"
readme = "README.md"
[dependencies]
base64 = "0.21.6"
chrono = "0.4.23"
http = "1"
lazy_static = "1.4.0"
regex = "1.7.0"
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["float_roundtrip"] }
sha2 = "0.10.6"
tokio = { version = "1.22.0", features = ["rt-multi-thread", "macros"] }
uaparser = "0.6.0"
thiserror = "1.0.58"
async-trait = "0.1"
futures = "0.3.31"