mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 00:49:42 +08:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
25 lines
838 B
TOML
25 lines
838 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
|
|
|
|
[dependencies]
|
|
error-stack = "0.3.1"
|
|
fred = { version = "7.0.0", features = ["metrics", "partial-tracing", "subscriber-client"] }
|
|
futures = "0.3"
|
|
serde = { version = "1.0.193", features = ["derive"] }
|
|
thiserror = "1.0.40"
|
|
tokio = "1.35.1"
|
|
tokio-stream = {version = "0.1.14", features = ["sync"]}
|
|
|
|
# First party crates
|
|
common_utils = { version = "0.1.0", path = "../common_utils", features = ["async_ext"] }
|
|
router_env = { version = "0.1.0", path = "../router_env", features = ["log_extra_implicit_fields", "log_custom_entries_to_extra"] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.35.1", features = ["macros", "rt-multi-thread"] }
|