-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (45 loc) · 1.45 KB
/
Cargo.toml
File metadata and controls
49 lines (45 loc) · 1.45 KB
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 = "redis-cloud"
version = "0.9.5"
edition = "2024"
rust-version = "1.89"
authors = ["Josh Rotenberg <josh.rotenberg@redis.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/redis-developer/redis-cloud-rs"
homepage = "https://github.com/redis-developer/redis-cloud-rs"
documentation = "https://docs.rs/redis-cloud"
description = "Redis Cloud REST API client library"
keywords = ["redis", "cloud", "api", "rest", "client"]
categories = ["api-bindings", "database"]
readme = "README.md"
[dependencies]
async-trait = "0.1"
reqwest = { version = "0.13", default-features = false, features = ["json", "rustls", "multipart"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_path_to_error = "0.1"
thiserror = "2.0"
tokio = { version = "1.40", features = ["full"] }
tracing = "0.1"
anyhow = "1.0"
base64 = "0.22"
chrono = { version = "0.4", features = ["serde"] }
url = "2.5"
typed-builder = "0.20"
tower = { version = "0.5", optional = true }
async-stream = "0.3"
futures-core = "0.3"
[features]
tower-integration = ["tower"]
test-support = ["wiremock"]
[dependencies.wiremock]
version = "0.6"
optional = true
[dev-dependencies]
wiremock = "0.6"
tokio = { version = "1.40", features = ["rt", "macros", "test-util"] }
pretty_assertions = "1.4"
serial_test = "3.1"
tower = { version = "0.5", features = ["timeout", "limit", "retry", "buffer"] }
tower-resilience = { version = "0.3.8", features = ["retry"] }
futures = "0.3"