From bac76a98bf4e90610d0a7105d2ebe6872dc147d4 Mon Sep 17 00:00:00 2001 From: rtkay123 Date: Mon, 9 Feb 2026 13:25:17 +0200 Subject: feat: svc crate --- lib/shared-svc/Cargo.toml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 lib/shared-svc/Cargo.toml (limited to 'lib/shared-svc/Cargo.toml') diff --git a/lib/shared-svc/Cargo.toml b/lib/shared-svc/Cargo.toml new file mode 100644 index 0000000..d95d3ef --- /dev/null +++ b/lib/shared-svc/Cargo.toml @@ -0,0 +1,28 @@ +[package] +name = "shared-svc" +version = "0.1.0" +edition = "2024" +license.workspace = true +readme.workspace = true +documentation.workspace = true + +[dependencies] +bb8-redis = { version = "0.26.0", optional = true } +log = "0.4.29" +redis = { version = "1.0.3", optional = true } +secrecy.workspace = true +thiserror.workspace = true +tokio = { workspace = true, optional = true } +tracing.workspace = true +url.workspace = true + +[features] +default = [] +cache = [ + "bb8-redis", + "redis/cluster-async", + "redis/connection-manager", + "redis/sentinel", + "redis/tokio-comp", + "tokio/sync" +] -- cgit v1.2.3