aboutsummaryrefslogtreecommitdiffstats
path: root/lib/shared-svc/Cargo.toml
diff options
context:
space:
mode:
authorrtkay123 <dev@kanjala.com>2026-02-09 13:25:17 +0200
committerrtkay123 <dev@kanjala.com>2026-02-09 13:25:17 +0200
commitbac76a98bf4e90610d0a7105d2ebe6872dc147d4 (patch)
tree341a1a31bd20741f781d48e01f7ded253bf34caf /lib/shared-svc/Cargo.toml
parent253c5631ae09fd5ad9fd6b3eff104e6099d4676c (diff)
downloadsellershut-bac76a98bf4e90610d0a7105d2ebe6872dc147d4.tar.bz2
sellershut-bac76a98bf4e90610d0a7105d2ebe6872dc147d4.zip
feat: svc crate
Diffstat (limited to 'lib/shared-svc/Cargo.toml')
-rw-r--r--lib/shared-svc/Cargo.toml28
1 files changed, 28 insertions, 0 deletions
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"
+]