aboutsummaryrefslogtreecommitdiffstats
path: root/lib/shared-svc/Cargo.toml
diff options
context:
space:
mode:
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"
+]