-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
49 lines (38 loc) · 1.48 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "growthbook-rust-sdk"
version = "0.1.1"
edition = "2021"
authors = [
"Deroldo <[email protected]",
"Alefh Sousa <[email protected]>"
]
license = "MIT"
description = "unofficial growthbook rust sdk"
readme = "README.md"
homepage = "https://github.com/will-bank/growthbook-rust-sdk"
repository = "https://github.com/will-bank/growthbook-rust-sdk"
keywords = ["growthbook", "experiment", "feature", "flag"]
categories = ["web-programming"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.38.0", features = ["full"] }
hashers = { version = "1.0.1" }
reqwest = { version = "0.12.4", default-features = false, features = ["json", "rustls-tls"] }
reqwest-middleware = { version = "0.4.0" }
strum = { version = "0.26.1" }
strum_macros = { version = "0.26.1" }
serde = { version = "1.0.196", features = ["derive"] }
serde_json = { version = "1.0.113", features = ["preserve_order"] }
reqwest-tracing = { version = "0.5.4", features = ["opentelemetry_0_21"] }
tracing = { version = "0.1.40" }
lazy_static = { version = "1.4.0" }
chrono = { version = "0.4.38" }
regex = { version = "1.10.4" }
indexmap = { version = "2.2.6" }
[dev-dependencies]
tower = { version = "0.4.13", features = ["util"] }
rstest = { version = "0.21.0" }
test-context = { version = "0.3.0" }
wiremock = { version = "0.6.0" }
rand = { version = "0.8.5" }
uuid = { version = "1.8.0", features = ["v7", "serde"] }