mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-28 04:04:55 +08:00
24 lines
780 B
TOML
24 lines
780 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 = "6.3.0", features = ["metrics", "partial-tracing","subscriber-client"] }
|
|
futures = "0.3"
|
|
serde = { version = "1.0.163", features = ["derive"] }
|
|
thiserror = "1.0.40"
|
|
tokio = "1.28.2"
|
|
|
|
# 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.28.2", features = ["macros", "rt-multi-thread"] }
|