-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
39 lines (35 loc) · 1.19 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
[package]
name = "appconfiguration"
version = "0.1.0-rc.0"
edition = "2021"
description = "The IBM Cloud App Configuration Rust SDK is used to perform feature flag and property evaluation based on the configuration on IBM Cloud App Configuration service."
repository = "https://github.com/IBM/appconfiguration-rust-sdk"
readme = "README.md"
keywords = ["ibm", "feature-flag", "remote-control"]
categories = ["config"]
license = "Apache-2.0"
homepage = "https://cloud.ibm.com/docs/app-configuration"
exclude = [
".github/*",
".gitignore",
".pre-commit-config.yaml",
".secrets.baseline",
"README.tpl",
]
[features]
http_client = []
[dependencies]
reqwest = { version = "0.12.9", features = ["json", "blocking"] }
serde = { version = "1.0.216", features = ["derive"] }
serde_json = { version = "1.0.133" }
murmur3 = "0.5.2"
tungstenite = { version = "0.26.0", features = ["native-tls"] }
url = "2.5.4"
thiserror = "2.0.7"
[dev-dependencies]
appconfiguration = {path = ".", features = ["http_client"]}
dotenvy = "0.15.7"
rstest = "0.23.0"
[badges]
github = { repository = "IBM/appconfiguration-rust-sdk" }