-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (30 loc) · 882 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
30
31
32
[package]
name = "configcat"
description = "ConfigCat Rust SDK"
authors = ["ConfigCat"]
homepage = "https://configcat.com"
repository = "https://github.com/configcat/rust-sdk"
documentation = "https://configcat.com/docs/sdk-reference/rust"
keywords = ["configcat", "feature-flag", "feature-toggle"]
license = "MIT"
version = "0.1.2"
edition = "2021"
[dependencies]
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
serde_repr = "0.1"
log = { version = "0.4", features = ["kv"] }
chrono = "0.4.38"
thiserror = "1.0"
reqwest = "0.12.4"
tokio = { version = "1.17.0", features = ["rt", "sync", "macros"] }
tokio-util = "0.7"
sha1 = "0.10"
sha2 = "0.10"
base16ct = { version = "0.2", features = ["alloc"] }
semver = "1.0"
[dev-dependencies]
mockito = "1.2.0"
serde_yaml = "0.9.33"
tokio = { version = "1.17.0", features = ["rt-multi-thread"] }
rand = "0.8.5"