-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
30 lines (25 loc) · 1.12 KB
/
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
30
[package]
name = "growthbook-sdk-rust"
# should match model.rs SDK_VERSION
version = "0.0.1"
edition = "2021"
metadata = { description = "GrowthBook SDK for Rust", license = "MIT", rust-version = "1.71.0" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0.164", features = ["serde_derive"], default-features = false }
serde_json = { default-features = false, version = "1.0.96" }
url = { version = "2.4.0" }
data-encoding = { version = "2.4.0" }
aes = { version = "0.8.2" }
cbc = { version = "0.1.2" }
regex = { default-features = false, version = "1.8.4" }
log = { version = "0.4.19" }
reqwest = { version = "0.11.18", default-features = false, features = ["default-tls", "json"] }
chrono = { features = ["clock"], default-features = false, version = "0.4.26" }
tokio = { version = "1.28.2", default-features = false, features = ["rt", "macros", "time"], optional = true }
[dev-dependencies]
mockito = { version = "1.1.0" }
tokio = { version = "1.28.2", default-features = false, features = ["macros"] }
[features]
default = ["tokio"]
tokio = ["dep:tokio"]