mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-27 03:13:56 +08:00
31 lines
826 B
TOML
31 lines
826 B
TOML
[package]
|
|
name = "redis_interface"
|
|
description = "A user-friendly interface to Redis"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
readme = "README.md"
|
|
license.workspace = true
|
|
|
|
[features]
|
|
multitenancy_fallback = []
|
|
|
|
[dependencies]
|
|
error-stack = "0.4.1"
|
|
fred = { version = "7.1.2", features = ["metrics", "partial-tracing", "subscriber-client", "check-unresponsive"] }
|
|
futures = "0.3"
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
thiserror = "1.0.69"
|
|
tokio = "1.45.1"
|
|
tokio-stream = { version = "0.1.17", features = ["sync"] }
|
|
tracing = { workspace = true }
|
|
|
|
# First party crates
|
|
common_utils = { version = "0.1.0", path = "../common_utils", features = ["async_ext"] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.45.1", features = ["macros", "rt-multi-thread"] }
|
|
|
|
[lints]
|
|
workspace = true
|