[package]
edition = "2024"
rust-version = "1.85"
name = "redis-cloud"
version = "0.9.1"
authors = ["Josh Rotenberg <joshrotenberg@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Redis Cloud REST API client library"
homepage = "https://github.com/redis-developer/redis-cloud-rs"
documentation = "https://docs.rs/redis-cloud"
readme = "README.md"
keywords = [
"redis",
"cloud",
"api",
"rest",
"client",
]
categories = [
"api-bindings",
"database",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/redis-developer/redis-cloud-rs"
[features]
test-support = ["wiremock"]
tower-integration = ["tower"]
[lib]
name = "redis_cloud"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "databases"
path = "examples/databases.rs"
[[example]]
name = "stream_databases"
path = "examples/stream_databases.rs"
[[test]]
name = "account_tests"
path = "tests/account_tests.rs"
[[test]]
name = "acl_tests"
path = "tests/acl_tests.rs"
[[test]]
name = "cloud_accounts_tests"
path = "tests/cloud_accounts_tests.rs"
[[test]]
name = "connectivity_tests"
path = "tests/connectivity_tests.rs"
[[test]]
name = "databases_tests"
path = "tests/databases_tests.rs"
[[test]]
name = "fixed_databases_tests"
path = "tests/fixed_databases_tests.rs"
[[test]]
name = "fixed_subscriptions_tests"
path = "tests/fixed_subscriptions_tests.rs"
[[test]]
name = "openapi_validation"
path = "tests/openapi_validation.rs"
[[test]]
name = "private_link_tests"
path = "tests/private_link_tests.rs"
[[test]]
name = "subscriptions_tests"
path = "tests/subscriptions_tests.rs"
[[test]]
name = "tasks_tests"
path = "tests/tasks_tests.rs"
[[test]]
name = "tower_integration_tests"
path = "tests/tower_integration_tests.rs"
[[test]]
name = "tower_middleware_tests"
path = "tests/tower_middleware_tests.rs"
[[test]]
name = "tower_resilience_test"
path = "tests/tower_resilience_test.rs"
[[test]]
name = "types_tests"
path = "tests/types_tests.rs"
[[test]]
name = "users_tests"
path = "tests/users_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-stream]
version = "0.3"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.futures-core]
version = "0.3"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
"multipart",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_path_to_error]
version = "0.1"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.40"
features = ["full"]
[dependencies.tower]
version = "0.5"
optional = true
[dependencies.tracing]
version = "0.1"
[dependencies.typed-builder]
version = "0.20"
[dependencies.url]
version = "2.5"
[dependencies.wiremock]
version = "0.6"
optional = true
[dev-dependencies.futures]
version = "0.3"
[dev-dependencies.pretty_assertions]
version = "1.4"
[dev-dependencies.serial_test]
version = "3.1"
[dev-dependencies.tokio]
version = "1.40"
features = [
"rt",
"macros",
"test-util",
]
[dev-dependencies.tower]
version = "0.5"
features = [
"timeout",
"limit",
"retry",
"buffer",
]
[dev-dependencies.tower-resilience]
version = "0.3.8"
features = ["retry"]
[dev-dependencies.wiremock]
version = "0.6"